From 5aa2a88a75056b5f571a8bdafb0928e30dbe5cf9 Mon Sep 17 00:00:00 2001 From: rashmika3433 <65844409+rashmika3433@users.noreply.github.com> Date: Sun, 17 Oct 2021 00:56:15 +0530 Subject: [PATCH 1/2] print twice.c Hello World print twice --- README.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 158a7a6..2489df5 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ -# HacktoberFest-HelloWorld -### An easy way to get your 5 pull requests for Hacktoberfest ! -This Repo is solely built for HacktoberFest 2019 !! Just make a pull request and it will be merged with in minutes ... -## examples that you can do -1. You can add any program. -2. You can update readme file. -etc... +#include + +int main(void) +{ + printf("hello, world!\n"); + printf("hello, world!\n"); +} From 7b904fa8537b776bfc9fe42f4d1a7887b8f487e5 Mon Sep 17 00:00:00 2001 From: rashmika3433 <65844409+rashmika3433@users.noreply.github.com> Date: Sun, 17 Oct 2021 00:57:05 +0530 Subject: [PATCH 2/2] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 2489df5..a6b9a62 100644 --- a/README.md +++ b/README.md @@ -4,4 +4,5 @@ int main(void) { printf("hello, world!\n"); printf("hello, world!\n"); +return 0; }