fork download
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4.  
  5. int main() {
  6.  
  7. double x=1;
  8. double y=0;
  9.  
  10. if (x!=y)
  11. {
  12. printf("x!=y\n");
  13. }
  14. if (x=y)
  15. {
  16. printf("x=y\n");
  17. }
  18.  
  19. return 0;
  20. }
Success #stdin #stdout 0.02s 1720KB
stdin
Standard input is empty
stdout
x!=y