MinGW hello world in windows Minimalist GNU for Windows

Published by Fudgy McFarlen on

Wiki: What is MinGW?

MinGW ("Minimalist GNU for Windows"), formerly mingw32, is a free and open source software development environment to create Microsoft Windows applications.

MinGW includes a port of the GNU Compiler Collection (GCC), GNU Binutils for Windows (assembler, linker, archive manager), a set of freely distributable Windows specific header files and static import libraries which enable the use of the Windows API, a Windows native build of the GNU Project's GNU Debugger, and miscellaneous utilities.

 

Compile and run a small test program with MinGW 

Links

Code

#include <iostream>
using namespace std;
main()
{
    cout << "Hello World!";
    return 0;
}

Categories:

0 Comments

Leave a Reply

Avatar placeholder

Your email address will not be published. Required fields are marked *