The number being generated is the same everytime, how will I be able to randomize the numbers? Thanks.
c
#include <stdio.h>
#include <stdlib.h>
int main(void) {
printf("%d", rand());
getch();
return 0;
}
This post has been edited by Ricendithas: 18 Jul, 2008 - 11:03 PM