From d927ba186b45670773613e46bb36e2d7f94d1a76 Mon Sep 17 00:00:00 2001 From: Alvie Rahman Date: Mon, 2 Oct 2023 14:35:08 +0100 Subject: [PATCH] add newline to C3/hello_world.c --- C3/hello_world.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/C3/hello_world.c b/C3/hello_world.c index 182d246..7141063 100644 --- a/C3/hello_world.c +++ b/C3/hello_world.c @@ -5,6 +5,6 @@ int main(void) { // This is a single line of comment - printf("Hello World"); + printf("Hello World\n"); return 0; -} \ No newline at end of file +}