DEV C++ compiler

Here is the link to down load DEV C++ compiler.

https://sourceforge.net/projects/orwelldevcpp/?source=typ_redirect

Open the link, click on green button Down load.
After down loading the file, click on the file to install it. Follow directions to install the file. 
After the installation is done, you can create, compile and run a C++ program. 
 

To compile and run a simple console application.

As an example, try:

File -> New -> Source File (or Ctrl+N)


There, write the following:

#include <iostream>
using namespace std;
int main()
{
cout<<"Hello";
}

Then:

File -> Save As... (or Ctrl+Alt+S)

And save it with some file name with a .cpp extension, such as example.cpp.

Now, hitting F11 (or select Excecute --> Compile and Run) should compile and run the program.