Run ❯
Get your
own
website
❯
Run Code
Ctrl+Alt+R
Change Orientation
Ctrl+Alt+O
Change Theme
Ctrl+Alt+D
Go to Spaces
Ctrl+Alt+P
#include
#include
#include
int main() { // Initialize the randomizer using the current timestamp as a seed // (The time() function is provided by the
header file) srand(time(NULL)); // Generate random numbers for(int i = 0; i < 10; i++) { int num = rand() % 100 + 1; printf("%d ", num); } return 0; }
9 27 7 11 80 37 92 32 60 41