Learn C++ Programming
Using two for write code :- MinGW
- Textpad
First : Download & Installation software
MinGW https://sourceforge.net/projects/mingw/files/
Textpad http://www.textpad.com/download/
Second : Configuration
Open Textpad
Click Configure-->Preferences
For Example Hello World Testing Configuration
#include
#include
using namespace std;
int main()
{
cout<<"Hello World Testing Configuration.";
return 0;
}