fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. int pi1 = 314;
  5. int pi2 = 314;
  6. int wrk;
  7.  
  8. wrk = (pi1 == pi2);
  9. printf("%d\n", wrk); // 1
  10.  
  11. if (pi1 == pi2 > 1) {
  12. printf("larger than 1 and equal\n");
  13. }
  14.  
  15. return 0;
  16. }
  17.  
Success #stdin #stdout 0s 4480KB
stdin
Standard input is empty
stdout
1