问题描述
用 eclipse for c++ 和CDT插件及编译工具MinGW开发C++程序,在C++源程序头部写
#include <iostream>
#include <stdio>
等此类标准库时,编辑器会提示:
Unresolved inclusion: <iostream>
解决方法
先选中项目名,在选择菜单:Project > Properties > C/C++ General > Preprocessor Includes… > Providers
并将 “CDT GCC Built-in Compiler Settings”打钩,再点击apply按钮即可解决。
网上给出的其他解决方法,我也试过,并不奏效。