fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. float z;
  5. float x;
  6. float y;
  7.  
  8. z=x;
  9. x=y;
  10. y=z;
  11. printf(%f=%f/n,z,x);
  12.  
  13. return 0;
  14. }
  15.  
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.c: In function 'main':
prog.c:11:9: error: expected expression before '%' token
  printf(%f=%f/n,z,x);
         ^
stdout
Standard output is empty