#include <stdio.h> int main(void) { int i; return 0; }
5
prog.c: In function 'main':
prog.c:6:11: error: format '%c' expects argument of type 'char *', but argument 2 has type 'int *' [-Werror=format=]
scanf("%c",&i);
^
cc1: all warnings being treated as errors
Standard output is empty