每当我尝试使用srand
功能时,我都会收到此警告
"implicit declaration of function 'time' [-Wimplicit-function-declaration]|"
运行编译文件时出现windows错误报告,
我是c编程的新手,我在教科书上找到了这个,但它对我不起作用。
srand (time());
int x= (rand()%10) +1;
int y= (rand()%10) +1;
printf("\nx=%d,y=%d", x,y);
我需要什么来纠正这个问题?