fork download
  1. #include<stdio.h>
  2. #include<unistd.h>
  3. #include<time.h>
  4.  
  5. int main(void) {
  6. srand(time(NULL));
  7. int a = rand()%9;
  8. printf("%d",a);
  9. return 0;
  10. }
  11.  
Success #stdin #stdout 0s 10320KB
stdin
Standard input is empty
stdout
8