fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. // your code goes here
  5. int a = 5;
  6. printf((a++)++)
  7. printf(a)
  8. return 0;
  9. }
  10.  
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.c: In function ‘main’:
prog.c:6:14: error: lvalue required as increment operand
  printf((a++)++)
              ^~
prog.c:7:2: error: expected ‘;’ before ‘printf’
  printf(a)
  ^~~~~~
stdout
Standard output is empty