Merge pull request #190 from KommX/patch-1

Update c.c (Added newline to string)
This commit is contained in:
Mike Donaghy
2015-07-06 00:00:10 -04:00

2
c/c.c
View File

@@ -1,6 +1,6 @@
#include<stdio.h> #include<stdio.h>
int main() { int main() {
printf("Hello World"); printf("Hello World\n");
return 0; return 0;
} }