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