首页 > 解决方案 > 我不知道 Windows 中 c 的 lib 文件在哪里

问题描述

这是 c_cpp_properties.json 文件:

{
    "configurations": [
        {
            "name": "Win32",
            "includePath": [
                "${workspaceFolder}/**"         <-- need to change this
            ],
            "defines": [
                "_DEBUG",
                "UNICODE",
                "_UNICODE"
            ],
            "intelliSenseMode": "msvc-x64"
        }
    ],
    "version": 4
}

我需要找到库的路径,这样我才能运行用 c 编写的代码

标签: cvisual-studio-code

解决方案


推荐阅读