Question 13 (3 points) Which of the following code snippets will generate a random number between 0 and 99? Question 13 options: srand (time(NULL)); val = rand() % 100; srand (time(NULL)); val = rand() % 100 - 1; srand (time(NULL)); val = rand() % 99; srand (time(NULL)); val = rand() * 100;