fork download
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4. static enum {MAXDIGITS=100, PLUS=1, MINUS=-1};
  5.  
  6. typedef struct {
  7. char number[MAXDIGITS];
  8. int sign;
  9. int lastdigit;
  10. } bigz;
  11.  
  12.  
  13.  
  14. int main(void)
  15. {
  16. return 0;
  17. }
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.cs(2,0): error CS1024: Wrong preprocessor directive
prog.cs(3,0): error CS1024: Wrong preprocessor directive
prog.cs(4,13): error CS8025: Parsing error
Compilation failed: 3 error(s), 0 warnings
stdout
Standard output is empty