fork download
  1. #include<stdio.h>
  2.  
  3. main()
  4. {
  5. int x;
  6.  
  7. if(x = 7){
  8. printf("nonzero\n");
  9. }
  10.  
  11. if(x = 100){
  12. printf("nonzero\n");
  13. }
  14.  
  15. if(x = -7){
  16. printf("nonzero\n");
  17. }
  18.  
  19. if(x = 0){
  20. printf("zero\n");
  21. }
  22. }
  23.  
Runtime error #stdin #stdout 0s 2052KB
stdin
Standard input is empty
stdout
nonzero
nonzero
nonzero