fork download
  1. #include <stdio.h>
  2. int main(void)
  3. {
  4. char test = 0xFF;
  5. printf("%c\n", test);
  6. return 0;
  7. }
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.c: In function ‘main’:
prog.c:4:5: error: overflow in implicit constant conversion [-Werror=overflow]
cc1: all warnings being treated as errors
stdout
Standard output is empty