/in/foo.c: In function 'main':
/in/foo.c:6:8: warning: missing terminating " character
scanf("%d%d, &a, &b);
^
/in/foo.c:6:8: error: missing terminating " character
scanf("%d%d, &a, &b);
^~~~~~~~~~~~~~~
/in/foo.c:8:1: error: expected ')' before '}' token
}
^
/in/foo.c:7:5: warning: passing argument 1 of 'scanf' makes pointer from integer without a cast [-Wint-conversion]
printf("%d\n",a + b)
^~~~~~
In file included from /usr/include/features.h:364:0,
from /usr/include/stdio.h:27,
from /in/foo.c:1:
/usr/include/stdio.h:448:12: note: expected 'const char * restrict' but argument is of type 'int'
extern int __REDIRECT (scanf, (const char *__restrict __format, ...),
^
/in/foo.c:8:1: error: expected ';' before '}' token
}
^