i watched this tutorial video http://thenewboston.org/watch.php?cat=14&number=13
and for some reason it doesn't work..
it says time is undeclared for some reason
#include <stdio.h>
#include <conio.h>
#include <stdlib.h>
int main(void)
{
int i=0;
srand(time(NULL));
while (i<200)
{
printf("%d\n", 1+rand()%6);
i++;
system("cls");
}
system("PAUSE");
return 0;
}