C语言未定义标识符sqrt
时间: 2024-03-16 11:37:46 浏览: 269
C语言程序设计_试卷
C语言中未定义标识符sqrt,如果需要使用sqrt函数,需要在代码中包含math.h头文件。下面是一个例子:
```c
#include <stdio.h>
#include <math.h>
int main() {
double x = 2.0;
double result = sqrt(x);
printf("The square root of %lf is %lf\n", x, result);
return 0;
}
```
阅读全文