fork download
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4. int main(void)
  5. {
  6. printf("\t==== Calculatrice ====\n\n\");
  7. printf("Choisissez une opération à effectuer :");
  8. return 0;
  9. }
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.c:6:16: warning: missing terminating " character
prog.c: In function ‘main’:
prog.c:6: error: missing terminating " character
prog.c:7: error: expected ‘)’ before ‘;’ token
prog.c:9: warning: passing argument 1 of ‘printf’ makes pointer from integer without a cast
prog.c:9: warning: format not a string literal and no format arguments
prog.c:9: error: expected ‘;’ before ‘}’ token
stdout
Standard output is empty