fork download
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <time.h>
  4.  
  5. int main(void) {
  6. int rand_num;
  7.  
  8. srand((unsigned)time(NULL));
  9. rand_num = rand()%9;
  10. printf("%d", &rand_num);
  11. }
  12.  
Success #stdin #stdout 0.01s 5284KB
stdin
Standard input is empty
stdout
790156100