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