MSVS 2008 portable: Compiled c ++ file. Successfully. At start .exe the error takes off:
this application has failed to start because the application configuration is incorrect. Review the manifest file ...
Codelite Problem with make:
g ++. exe: @Axa.txt: No such file or directory g ++. exe: no input files mingw32-make.exe [1]: * [Debug / Axa] Error 1 mingw32-make.exe: * [All] Error 2
MinGW - compiles, I get .exe on output. When launched, it simply "hangs";
#include <iostream> #include <string.h> using namespace std; class X { private: string name; public: void SetName() { cin >> this->name; } void GetName() { cout << this->name; } }; int main() { X X1; X1.SetName(); X1.GetName(); return 0; }