前端之家收集整理的这篇文章主要介绍了
这个错误在c中是什么意思?,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
#include<stdio.h>
#include<ctype.h>
int main()
{
char a,b;
FILE *fp;
fp=fopen("lext.txt","w");
fprintf(fp,"PLUS");
return 0;
}
我得到的错误是这样的
/tmp/ccQyyhxo.o:(.eh_frame+0x11): undefined reference to `__gxx_personality_v0'
collect2: ld returned 1 exit status
您正在使用gcc编译.cpp
文件.将
文件重命名为.c结尾,以便编译为C
代码或用C驱动程序g编译.这将
链接到stdc库中提供这些
功能.
原文链接:https://www.f2er.com/c/112019.html