DEV C++ compiler
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.