#include <stdio.h> #include <string.h>
时间: 2023-12-09 12:03:57 浏览: 154
# include <stdio.h>
这是C语言中的头文件,其中stdio.h是标准输入输出头文件,提供了一些常用的输入输出函数,例如printf和scanf。而string.h则是字符串头文件,提供了一些常用的字符串处理函数,例如strcpy和strcat。
如果你想要使用这些函数,需要在程序中包含这两个头文件,例如:
```c
#include <stdio.h>
#include <string.h>
int main() {
char str1[10] = "hello";
char str2[10] = "world";
strcat(str1, str2);
printf("%s\n", str1); // 输出:helloworld
return 0;
}
```
阅读全文