fork download
  1. #include "stdio.h"
  2.  
  3. int main()
  4.  
  5. {
  6.  
  7. int x, y = 5, z = 5;
  8.  
  9. x = y == z;
  10.  
  11. printf("%d", x);
  12.  
  13.  
  14.  
  15. getchar();
  16.  
  17. return 0;
  18.  
  19. }
Success #stdin #stdout 0s 5648KB
stdin
Standard input is empty
stdout
1