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