Compile and run a small test program with MinGW
Links
- MinGW basic instruction of usage – example runs with windows cmd prompt and the most important thing is to set the path
Code
#include <iostream>
using namespace std;
main()
{
cout << "Hello World!";
return 0;
}
0 Comments