fork download
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <time.h>
  4.  
  5. int main()
  6. {
  7. int r;
  8.  
  9. srand(time(NULL));
  10.  
  11. r = rand() % 3;
  12.  
  13. if(r == 0)
  14. printf("Hello\n");
  15. else
  16. printf("Bye\n");
  17.  
  18. return 0;
  19. }
  20.  
Success #stdin #stdout 0s 5288KB
stdin
Standard input is empty
stdout
Bye