gpt4 book ai didi

c - 隐式函数声明 'time' [-Wimplicit-function-declaration]|

转载 作者:太空狗 更新时间:2023-10-29 16:30:36 31 4
gpt4 key购买 nike

每当我尝试使用 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);

我需要什么来纠正这个问题?

最佳答案

您需要确保#include 正确的 header ,在这种情况下:

#include <stdlib.h>  // rand(), srand()
#include <time.h> // time()

如有疑问,请查看手册页:

$ man rand

$ man time

还有一个问题:time() 需要一个参数,它可以是 NULL,因此您对 srand() 的调用应该是:

srand(time(NULL));

关于c - 隐式函数声明 'time' [-Wimplicit-function-declaration]|,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15458393/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com