I tried to use eclipse for c++ programming instead of code-blocks. and i created a simple "helloworld.cpp" program
1 2 3 4 5 6 7 8
|
#include <iostream>
using namespace std;
int main()
{
cout << "!!!Hello World!!!" << endl;
return 0;
}
|
but when i run the program it gives a error message saying, libstdc++-6.dll not found! please help :(
Last edited on
@niven do i drop it in C:\MinGW\bin ?