From de7ee3ad6f668787b299c25fedbb7a606c67000d Mon Sep 17 00:00:00 2001 From: raji Date: Fri, 11 Jun 2021 18:37:35 +0530 Subject: [PATCH 1/2] helloworld is added --- helloworld.c | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 helloworld.c diff --git a/helloworld.c b/helloworld.c new file mode 100644 index 0000000..8691443 --- /dev/null +++ b/helloworld.c @@ -0,0 +1,5 @@ +#include +int main() + printf("helloworid"); +return 0; + From b38f7f470a27c7b18822239ae685039b6b7b6d92 Mon Sep 17 00:00:00 2001 From: Raji-2002 <85629188+Raji-2002@users.noreply.github.com> Date: Fri, 11 Jun 2021 18:44:10 +0530 Subject: [PATCH 2/2] Update helloworld.c --- helloworld.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/helloworld.c b/helloworld.c index 8691443..e8963a7 100644 --- a/helloworld.c +++ b/helloworld.c @@ -1,5 +1,6 @@ #include -int main() - printf("helloworid"); -return 0; +int main(){ + printf("helloworld"); + return 0; +}