From b48596f5764869176aed6c8b8fc327fb0f98a009 Mon Sep 17 00:00:00 2001 From: restitux Date: Sun, 23 Oct 2022 20:02:55 -0600 Subject: [PATCH] Move newline to after exclamation point --- main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.c b/main.c index c6654ac..bc132b5 100644 --- a/main.c +++ b/main.c @@ -1,5 +1,5 @@ #include int main() { - printf("Hello, World (from c)\n!"); + printf("Hello, World (from c)!\n"); }