Netbins connected the module to develop C / C ++.
- Version: 1.16.1.1.
- Source: NetBeans Distribution.
- Plug-in Description: C / C ++ support, including editing, projects, GDB debugger and build. Provides basic support for Fortran and Assembler (x86 / 64, SPARC)
I create a project - an application in C / C ++, such code is initially present in the file
#include <cstdlib> using namespace std; /* * */ int main(int argc, char** argv) { return 0; }
Netbins emphasizes #include <cstdlib>
and writes on a tooltip that it could not find the file include <cstdlib>
, similarly - std - it was not possible to resolve the identifier std. Something needs to be installed or what needs to be done? Or do you need to create a project of another type? Tell me how to start working?