From b7694584d62477a260a81c8c98d5683b360a1b70 Mon Sep 17 00:00:00 2001 From: tharun-selvam Date: Sun, 16 Apr 2023 16:06:48 +0530 Subject: [PATCH 1/3] created hello world --- hello.c | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 hello.c diff --git a/hello.c b/hello.c new file mode 100644 index 0000000..d55273f --- /dev/null +++ b/hello.c @@ -0,0 +1,7 @@ +#include + +int main() +{ + printf("Hello World\n"); + return 0; +} \ No newline at end of file From 7e85c509a3181a5bc7cecb86807b03d3dbdb52ee Mon Sep 17 00:00:00 2001 From: tharun-selvam Date: Sun, 16 Apr 2023 16:07:10 +0530 Subject: [PATCH 2/3] added name --- hello.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/hello.c b/hello.c index d55273f..d7267c0 100644 --- a/hello.c +++ b/hello.c @@ -3,5 +3,7 @@ int main() { printf("Hello World\n"); + printf("My name is Tharun Selvam\n"); + return 0; } \ No newline at end of file From 3a73216f657e21a9168af8bc9fbece4c70292cd6 Mon Sep 17 00:00:00 2001 From: tharun-selvam Date: Sun, 16 Apr 2023 16:07:32 +0530 Subject: [PATCH 3/3] Revert "added name" This reverts commit 7e85c509a3181a5bc7cecb86807b03d3dbdb52ee. --- hello.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/hello.c b/hello.c index d7267c0..d55273f 100644 --- a/hello.c +++ b/hello.c @@ -3,7 +3,5 @@ int main() { printf("Hello World\n"); - printf("My name is Tharun Selvam\n"); - return 0; } \ No newline at end of file