From b7694584d62477a260a81c8c98d5683b360a1b70 Mon Sep 17 00:00:00 2001 From: tharun-selvam Date: Sun, 16 Apr 2023 16:06:48 +0530 Subject: [PATCH 1/5] 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/5] 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/5] 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 From cb7367dcb4cabc3656ef621887a320683ce9f285 Mon Sep 17 00:00:00 2001 From: tharun-selvam Date: Sun, 16 Apr 2023 16:12:25 +0530 Subject: [PATCH 4/5] created code1 --- code1.c | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 code1.c diff --git a/code1.c b/code1.c new file mode 100644 index 0000000..d55273f --- /dev/null +++ b/code1.c @@ -0,0 +1,7 @@ +#include + +int main() +{ + printf("Hello World\n"); + return 0; +} \ No newline at end of file From 33c117c08f7ee5fa24003b8521fec056304d1d77 Mon Sep 17 00:00:00 2001 From: tharun-selvam Date: Sun, 16 Apr 2023 16:13:10 +0530 Subject: [PATCH 5/5] added name --- code1.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/code1.c b/code1.c index d55273f..6e0d541 100644 --- a/code1.c +++ b/code1.c @@ -3,5 +3,8 @@ int main() { printf("Hello World\n"); + printf("My name is Tharun Selvam K\n"); + + return 0; } \ No newline at end of file