From 4b050aea1f22aa665646416dc321a08e762dba00 Mon Sep 17 00:00:00 2001 From: kerem Date: Sat, 29 Oct 2022 21:52:13 +0200 Subject: [PATCH 1/2] Added printf Hello --- main.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/main.c b/main.c index c3235e4..5209152 100644 --- a/main.c +++ b/main.c @@ -4,4 +4,5 @@ int main(void) { return 0; -} \ No newline at end of file + printf("Helloo"); +} From f7b9e73ac53c51566541067279da580f89fa09b4 Mon Sep 17 00:00:00 2001 From: kerem Date: Sat, 29 Oct 2022 22:05:20 +0200 Subject: [PATCH 2/2] Made the changes requested by Edwin to print Hello, World! --- main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.c b/main.c index 5209152..3d8efb6 100644 --- a/main.c +++ b/main.c @@ -4,5 +4,5 @@ int main(void) { return 0; - printf("Helloo"); + printf("Hello, World!"); }