diff options
Diffstat (limited to '1')
| -rw-r--r-- | 1/1.c | 1 | ||||
| -rw-r--r-- | 1/2.c | 7 |
2 files changed, 8 insertions, 0 deletions
@@ -3,4 +3,5 @@ int main(int argc, char *argv[]) { printf("hello, world\n"); + return 0; } @@ -0,0 +1,7 @@ +#include <stdio.h> + +int main(int argc, char *argv[]) +{ + printf("hello \c world\n"); + return 0; +} |
