我的代码如下:
#include <stdlib.h>
#include <time.h>
#include <unistd.h>
#include <windows.h>
int main()
{
printf("test");
usleep(1000000);
printf("test");
return 0;
}
我被告知“错误:'usleep'未在此范围内声明”。我正在使用 c free 编译器,如果这有什么不同的话,我完全不确定为什么这段代码没有编译,因为包含了所有需要的库。
您只需包括:
#包括