fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4.  
  5. int x = 4;
  6. float y = 4.0;
  7.  
  8. if(x==y)
  9. printf("1");
  10. else
  11. printf("0");
  12.  
  13.  
  14. return 0;
  15. }
  16.  
Success #stdin #stdout 0s 2112KB
stdin
Standard input is empty
stdout
1