/in/foo.c: In function 'daysMonth':
/in/foo.c:10:7: error: stray '\357' in program
if((year%4==0&&year%100!=0)||year%400==0)
^
/in/foo.c:10:8: error: stray '\274' in program
if((year%4==0&&year%100!=0)||year%400==0)
^
/in/foo.c:10:9: error: stray '\210' in program
if((year%4==0&&year%100!=0)||year%400==0)
^
/in/foo.c:10:33: error: expected expression before '||' token
if((year%4==0&&year%100!=0)||year%400==0)
^~
/in/foo.c:10:4: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
if((year%4==0&&year%100!=0)||year%400==0)
^~
/in/foo.c:10:46: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'if'
if((year%4==0&&year%100!=0)||year%400==0)
^
/in/foo.c:10:46: error: expected statement before ')' token
/in/foo.c:12:4: error: 'else' without a previous 'if'
else
^~~~