fork download
  1. #include<stdio.h>
  2. int main()
  3. {
  4. int x = 10, y = 20;
  5. if(x+y > y)
  6. printf("x = %d\n", x);
  7. else
  8. printf("y = %d", y);
  9. return 0;
  10. }
Success #stdin #stdout 0s 5492KB
stdin
Standard input is empty
stdout
x = 10