fork download
  1. #include <stdio.h>
  2.  
  3. int main() {
  4. int x = 1;
  5. x++++;
  6. printf("%d",x);
  7. }
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.c: In function ‘main’:
prog.c:5:8: error: lvalue required as increment operand
     x++++;
        ^
stdout
Standard output is empty