Open a new Command Prompt (CMD) or PowerShell and check the version: gcc --version

Expected output: Hello, MinGW!

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

The modern standard is , which supports both 32-bit and 64-bit systems.

gcc --version g++ --version mingw32-make --version gdb --version