fork(2) download
  1. #include<stdio.h>
  2. int main ( )
  3. {
  4. int x = 0, y = 5;
  5. if (x < y)
  6. {
  7. x=x+y;
  8. return x;
  9. }
  10. else
  11. printf("%d ",x);
  12. printf("%d",y);
  13. }
  14.  
Runtime error #stdin #stdout 0s 9288KB
stdin
Standard input is empty
stdout
Standard output is empty