Vs code第一次运行C语言报错问题

Vs code第一次运行C语言报错问题,第1张

Vs code第一次运行C语言报错问题 1. 报错libmingw32.a(main.o).text.startup+0xc0): undefined reference to `WinMain@16’ VsCode第一次编写C语言
#include 
int main()
{
    printf("hello worldn");
}

之后点击运行(安装vsCode插件Code Runner)报错

[Running] cd "f:SpaceCSpacefirst" && gcc hello.c -o hello && "f:SpaceCSpacefirst"hello
e:/apk/c/bin/../lib/gcc/mingw32/9.2.0/../../../../mingw32/bin/ld.exe: e:/apk/c/bin/../lib/gcc/mingw32/9.2.0/../../../libmingw32.a(main.o):(.text.startup+0xc0): undefined reference to `WinMain@16'
collect2.exe: error: ld returned 1 exit status

[Done] exited with code=1 in 0.232 seconds

解决方法:
VsCode点击运行–>添加配置,选中C++(Gcc/LLDW)–>接着选中gcc.exe…文件

之后点击运行即可

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/4949408.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-13
下一篇 2022-11-13

发表评论

登录后才能评论

评论列表(0条)

保存