/in/foo.c: In function 'main':
/in/foo.c:6:9: error: expected expression before '%' token
scanf(%d , &x);
^
/in/foo.c:8:19: warning: implicit declaration of function 'print' [-Wimplicit-function-declaration]
if(x % 2 == 1) print("Odd");
^~~~~
/in/foo.c:9:14: error: stray '\357' in program
else print("Even");
^
/in/foo.c:9:15: error: stray '\274' in program
else print("Even");
^
/in/foo.c:9:16: error: stray '\210' in program
else print("Even");
^
/in/foo.c:9:9: error: 'print' undeclared (first use in this function)
else print("Even");
^~~~~
/in/foo.c:9:9: note: each undeclared identifier is reported only once for each function it appears in
/in/foo.c:9:17: error: expected ';' before string constant
else print("Even");
^~~~~~
/in/foo.c:9:3: warning: this 'else' clause does not guard... [-Wmisleading-indentation]
else print("Even");
^~~~
/in/foo.c:9:23: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'else'
else print("Even");
^
/in/foo.c:9:23: error: expected statement before ')' token