From fdd5ff4cf3d44f91980eb58798793ab78a2a72b1 Mon Sep 17 00:00:00 2001 From: Syed Abdullah Bukhari Date: Sat, 13 Sep 2025 12:03:50 +0500 Subject: [PATCH 1/9] first c lang program (#1) --- 1_hello_world.c => 01_hello_world.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename 1_hello_world.c => 01_hello_world.c (97%) diff --git a/1_hello_world.c b/01_hello_world.c similarity index 97% rename from 1_hello_world.c rename to 01_hello_world.c index 9a0a569..fb3127d 100644 --- a/1_hello_world.c +++ b/01_hello_world.c @@ -3,4 +3,4 @@ void main () { printf("Hello World!"); return 0; -} \ No newline at end of file +} From f38c08b65d40eb6b46901ec659a478252753b3b5 Mon Sep 17 00:00:00 2001 From: Syed Abdullah Bukhari Date: Sat, 13 Sep 2025 12:04:43 +0500 Subject: [PATCH 2/9] demonstrate variables further (#7) --- 2_variables.c => 02_variables.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename 2_variables.c => 02_variables.c (99%) diff --git a/2_variables.c b/02_variables.c similarity index 99% rename from 2_variables.c rename to 02_variables.c index b7ddccd..83d4b5a 100644 --- a/2_variables.c +++ b/02_variables.c @@ -11,4 +11,4 @@ int main() { printf("%f\n", myFloatNum); printf("%c\n", myLetter); return 0; -} \ No newline at end of file +} From 5a3cde3d0c01607724a4f1f29d3a579eef0af947 Mon Sep 17 00:00:00 2001 From: Syed Abdullah Bukhari Date: Sat, 13 Sep 2025 12:05:13 +0500 Subject: [PATCH 3/9] data types in c lang --- 3_data_types.c => 03_data_types.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename 3_data_types.c => 03_data_types.c (98%) diff --git a/3_data_types.c b/03_data_types.c similarity index 98% rename from 3_data_types.c rename to 03_data_types.c index 840396d..980d14f 100644 --- a/3_data_types.c +++ b/03_data_types.c @@ -10,4 +10,4 @@ int main (){ printf("%c\n" , model); return 0; -} \ No newline at end of file +} From 4dbc030e23ff6818b28a34fb54982e1ab28761c1 Mon Sep 17 00:00:00 2001 From: Syed Abdullah Bukhari Date: Sat, 13 Sep 2025 12:05:53 +0500 Subject: [PATCH 4/9] constant variables in c lang --- 4_constant_variables.c => 04_constant_variables.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename 4_constant_variables.c => 04_constant_variables.c (98%) diff --git a/4_constant_variables.c b/04_constant_variables.c similarity index 98% rename from 4_constant_variables.c rename to 04_constant_variables.c index a0504c7..375be40 100644 --- a/4_constant_variables.c +++ b/04_constant_variables.c @@ -9,4 +9,4 @@ int main() { printf("%c\n", characters); return 0; -} \ No newline at end of file +} From 70a50b361a686328961cda50eabe601ac549e12d Mon Sep 17 00:00:00 2001 From: Syed Abdullah Bukhari Date: Sat, 13 Sep 2025 12:07:04 +0500 Subject: [PATCH 5/9] operators in c lang (#13) --- 5_operators.c => 05_operators.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename 5_operators.c => 05_operators.c (99%) diff --git a/5_operators.c b/05_operators.c similarity index 99% rename from 5_operators.c rename to 05_operators.c index 051ea25..d5fbe3a 100644 --- a/5_operators.c +++ b/05_operators.c @@ -8,4 +8,4 @@ int main() { printf("%d\n", sum2); printf("%d\n", sum3); return 0; -} \ No newline at end of file +} From dae35d67d871402190d13ac7eeee24250cb873c6 Mon Sep 17 00:00:00 2001 From: Syed Abdullah Bukhari Date: Sat, 13 Sep 2025 12:07:28 +0500 Subject: [PATCH 6/9] booleans in c --- 6_booleans.c => 06_booleans.c | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename 6_booleans.c => 06_booleans.c (100%) diff --git a/6_booleans.c b/06_booleans.c similarity index 100% rename from 6_booleans.c rename to 06_booleans.c From da708cddb556cd10a827a05f992c39e4203fde15 Mon Sep 17 00:00:00 2001 From: Syed Abdullah Bukhari Date: Sat, 13 Sep 2025 12:08:32 +0500 Subject: [PATCH 7/9] if else in c lang --- 7_if_else_loops.c => 07_if_else_loops.c | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename 7_if_else_loops.c => 07_if_else_loops.c (100%) diff --git a/7_if_else_loops.c b/07_if_else_loops.c similarity index 100% rename from 7_if_else_loops.c rename to 07_if_else_loops.c From 08f7f55806082dd4cb82a9374921d6f627c64709 Mon Sep 17 00:00:00 2001 From: Syed Abdullah Bukhari Date: Sat, 13 Sep 2025 12:10:01 +0500 Subject: [PATCH 8/9] while loops in c lang --- 8_while_loops.c => 08_while_loops.c | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename 8_while_loops.c => 08_while_loops.c (100%) diff --git a/8_while_loops.c b/08_while_loops.c similarity index 100% rename from 8_while_loops.c rename to 08_while_loops.c From d890155069547a7261da95f853913888ec8ceb48 Mon Sep 17 00:00:00 2001 From: Syed Abdullah Bukhari Date: Sat, 13 Sep 2025 12:10:22 +0500 Subject: [PATCH 9/9] for loops in c lang --- 9_for_loops.c => 09_for_loops.c | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename 9_for_loops.c => 09_for_loops.c (100%) diff --git a/9_for_loops.c b/09_for_loops.c similarity index 100% rename from 9_for_loops.c rename to 09_for_loops.c