fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. // your code goes here
  5. int x=y=z=3,i;
  6. i=x+++y+++z++;
  7. printf("%d",i);
  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:5:8: error: ‘y’ undeclared (first use in this function)
  int x=y=z=3,i;
        ^
prog.c:5:8: note: each undeclared identifier is reported only once for each function it appears in
prog.c:5:10: error: ‘z’ undeclared (first use in this function)
  int x=y=z=3,i;
          ^
stdout
Standard output is empty