From dae49713676a448d16e39fc2932de356afd6a613 Mon Sep 17 00:00:00 2001 From: syedabdullahbukhari77 Date: Tue, 9 Sep 2025 21:17:17 +0500 Subject: [PATCH] first c lang program ( #1 ) --- 1_hello_world.c | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 1_hello_world.c diff --git a/1_hello_world.c b/1_hello_world.c new file mode 100644 index 0000000..9a0a569 --- /dev/null +++ b/1_hello_world.c @@ -0,0 +1,6 @@ +#include + +void main () { + printf("Hello World!"); + return 0; +} \ No newline at end of file