I usually install minGW from sourceforge using the automated installation.
http://sourceforge.net/projects/mingw/files/Automated%20MinGW%20Installer/
Select "mingw-get". Then, by sure to install gcc c++ compiler features.
To check the installation is ok, write "gcc -v" from the command line. You should view the gcc version.
If it doesn't work, check your system paths. "C:\MinGW\bin" should be correcty configured.
To develop your apps in an easy and fast way, you could download Eclipse-CDT for Windows.
http://www.eclipse.org/cdt/downloads.php
Eclipse doesn't need any installation. Decompress it in a directory you want and ready to work.
If doesn't work, you will probably need to install a java virtual machine previously.
Eclipse automatically detects your MinGW installation, so you don't need to do anything.
Create a new C-proyect (select the test proyect "Hello World" or write your own), and then compile and run.
That is all.
Regards