add newline to C3/hello_world.c

This commit is contained in:
Akbar Rahman 2023-10-02 14:35:08 +01:00
parent 3ed2a4276c
commit d927ba186b
Signed by: alvierahman90
GPG Key ID: 20609519444A1269

View File

@ -5,6 +5,6 @@
int main(void) int main(void)
{ {
// This is a single line of comment // This is a single line of comment
printf("Hello World"); printf("Hello World\n");
return 0; return 0;
} }