From 27f789f3aa1171aa4f1e4dc259daffe8077b7c28 Mon Sep 17 00:00:00 2001 From: SinusFox Date: Fri, 28 Apr 2023 09:22:02 +0200 Subject: [PATCH] Added line break --- 1_Hello_World/Hello_World.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1_Hello_World/Hello_World.c b/1_Hello_World/Hello_World.c index 8a469b4..7778334 100644 --- a/1_Hello_World/Hello_World.c +++ b/1_Hello_World/Hello_World.c @@ -1,6 +1,6 @@ #include int main() { - printf("Printing hello world, although printing foxes is superior."); + printf("Printing hello world,\nalthough printing foxes is superior."); return 0; }