我只是在VS Code中测试了一个C程序,但在我的include语句中有一个绿色的波浪形。
这是底部的警告信息
我该如何解决这个问题?
这里是非图像形式的代码
#include <stdio.h>
/*
this is a comment
*/
main()
{
char c = 'F';
printf("%d\n", c - 'A');
}
答案 0 :(得分:0)
我对类似问题有another answer,该问题解释了如何解决VSCode错误消息#include errors detected. Please update your includePath.
简短摘要:
有关更多详细信息,请参见链接的答案。