fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. char english;
  5. scanf("%c",english);
  6. printf("%c%C",english,)
  7. return 0;
  8. }
  9.  
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.c: In function ‘main’:
prog.c:5:10: warning: format ‘%c’ expects argument of type ‘char *’, but argument 2 has type ‘int’ [-Wformat=]
  scanf("%c",english);
          ^
prog.c:6:24: error: expected expression before ‘)’ token
  printf("%c%C",english,)
                        ^
stdout
Standard output is empty