fork download
  1. #include <stdio.h>
  2. int main(void)
  3. {
  4. int n;
  5.  
  6. for(n=0; n<2; n++)
  7.  
  8. if( n == 1)
  9. printf(" Hello " );
  10.  
  11. else
  12. printf(" Bye ");
  13.  
  14. return 0;
  15. }
  16.  
Success #stdin #stdout 0.02s 1720KB
stdin
Standard input is empty
stdout
 Bye  Hello