fork download
  1. #include <stdio.h>
  2. #include <time.h>
  3.  
  4.  
  5. int main(void) {
  6. const int left_date = 2003;
  7. const int right_date = 2020;
  8.  
  9. srand(time(NULL));
  10.  
  11. int random_date = left_date + rand() % (right_date - left_date + 1);
  12. printf("Random Date: %d", random_date);
  13. return 0;
  14. }
  15.  
Success #stdin #stdout 0s 4500KB
stdin
Standard input is empty
stdout
Random Date: 2015