#include
#include
#include
int main(){
int num;
//initialize the random number generator
randomize();
//Generating the random number
num = random(99999);
//Printing the random number
printf("%d",num);
getch();
return 0;
}
No comments:
Post a Comment