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