/in/foo.c: In function 'main':
/in/foo.c:6:9: warning: missing terminating " character
printf("
^
/in/foo.c:6:9: error: missing terminating " character
/in/foo.c:14:4: error: expected ')' before numeric constant
0 0 1
^
/in/foo.c:30:6: warning: missing terminating " character
");
^
/in/foo.c:30:6: error: missing terminating " character
");
^~~
/in/foo.c:13:1: warning: passing argument 1 of 'printf' makes pointer from integer without a cast [-Wint-conversion]
4
^
In file included from /in/foo.c:1:0:
/usr/include/stdio.h:364:12: note: expected 'const char * restrict' but argument is of type 'int'
extern int printf (const char *__restrict __format, ...);
^~~~~~
/in/foo.c:32:1: error: expected ';' before '}' token
}
^