From aae62168b66c690109e3a5fa3e4cf36ed25ffa50 Mon Sep 17 00:00:00 2001 From: syedabdullahbukhari77 Date: Wed, 10 Sep 2025 23:04:10 +0500 Subject: [PATCH 1/2] constant variables in c-lang --- 4_constant_variables.c | 12 ------------ 1 file changed, 12 deletions(-) delete mode 100644 4_constant_variables.c diff --git a/4_constant_variables.c b/4_constant_variables.c deleted file mode 100644 index a0504c7..0000000 --- a/4_constant_variables.c +++ /dev/null @@ -1,12 +0,0 @@ -#include - -int main() { - - const int id = 12038921; - const char characters = 'Z'; - - printf("%d\n", id); - printf("%c\n", characters); - - return 0; -} \ No newline at end of file From 08ce2eebaa5f7a9b1d345b32818895346df3d94a Mon Sep 17 00:00:00 2001 From: syedabdullahbukhari77 Date: Wed, 10 Sep 2025 23:05:44 +0500 Subject: [PATCH 2/2] constant variables in c-lang (#11) --- 4_constant_variables.c | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 4_constant_variables.c diff --git a/4_constant_variables.c b/4_constant_variables.c new file mode 100644 index 0000000..a0504c7 --- /dev/null +++ b/4_constant_variables.c @@ -0,0 +1,12 @@ +#include + +int main() { + + const int id = 12038921; + const char characters = 'Z'; + + printf("%d\n", id); + printf("%c\n", characters); + + return 0; +} \ No newline at end of file