VS Code C#包括错误。请更新您的includePath

时间:2017-09-08 07:52:58

标签: c visual-studio-code

我只是在VS Code中测试了一个C程序,但在我的include语句中有一个绿色的波浪形。

enter image description here

这是底部的警告信息

enter image description here

我该如何解决这个问题?

这里是非图像形式的代码

#include <stdio.h>
/*
    this is a comment
*/
main()
{
    char c = 'F';
    printf("%d\n", c - 'A');
}

1 个答案:

答案 0 :(得分:0)

我对类似问题有another answer,该问题解释了如何解决VSCode错误消息#include errors detected. Please update your includePath.

简短摘要:

  1. 首先检查您的编译器路径和IntelliSense模式。
  2. 将“ C / C ++:日志诊断”输出与编译器的内置程序进行比较。
  3. 在需要设置包含路径时,请使用“ C / C ++:编辑配置(UI)”。

有关更多详细信息,请参见链接的答案。