gcc --version g++ --version mingw32-make --version gdb --version Expected output: Version information for each tool. Example for gcc :

Compile and run:

gcc (MinGW.org GCC-6.3.0-1) 6.3.0 Copyright (C) 2016 Free Software Foundation, Inc. Create a file hello.c :

#include <stdio.h> int main() printf("Hello, MinGW!\n"); return 0;