我编写了该程序kai.c
,现在正尝试用它编译它gcc kai.c -o kai
,它返回:
kai.c:5:18: fatal error: string: No such file or directory
#include <string>
^
compilation terminated.
我能做些什么?
gcc version is: (Ubuntu 4.8.2-19ubuntu1) 4.8.2
答案1
#include <string>
是一个 C++ 指令。
将文件重命名为kai.cpp
并使用g++ kai.cpp -o kai
答案2
C
字符串库是文件string.h
,因此:
#include "string.h"
例子:
#include "string.h"
#include "stdio.h"
void main(){
char src[2] = "Hi";
char dest[2];
strcpy(dest, src);
printf("%s\n", dest); // Will print Hi
}