gpt4 book ai didi

c - 为什么我会收到错误 (C)?

转载 作者:行者123 更新时间:2023-11-30 15:36:12 25 4
gpt4 key购买 nike

我正在尝试使用 unistd.h 库中的 usleep 函数。但是,即使我将库包含在函数顶部之后,错误仍然存​​在。这是错误:

anfernee@AJ-crunchbang:~/Dropbox/CSCAPE/Tesla$ make calculator
clang -ggdb3 -O0 -std=c99 -Wall -Werror -lm -lcs50 calculator.c -o calculator
calculator.c:20:2: error: implicit declaration of function 'usleep' is invalid in C99 [-Werror,-Wimplicit-function-declaration]
usleep(180000);
^
1 error generated.
make: *** [calculator] Error 1
anfernee@AJ-crunchbang:~/Dropbox/CSCAPE/Tesla$ ^C
anfernee@AJ-crunchbang:~/Dropbox/CSCAPE/Tesla$

这是出现错误的代码。

#include <stdio.h>
#include <math.h>
#include <stdlib.h>
#include <unistd.h>

#define CLEAR printf("\033[2J");printf("\033[%d;%dH", 0, 0); //creates a constant that clears the console screen


void PResistance(void); //calculates total resistance with resistors in parallel
//void Truth(void); //determines the truth table for logic gates specified
void EForce(void); //Calculated the electric force
void Ohm(void); //calculates power

int main(void){
int option; //Stores the user's option
int exit = 0;
printf("\033[0;36;40m"); //Changes the colour of screen to cyan
printf("Welcome!\n"); //greet user

usleep(180000);

我做错了什么?

最佳答案

usleep() 已过时。您可以使用 nanosleep()setitimer()作为替代方案。

关于c - 为什么我会收到错误 (C)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22620570/

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