gcc --version
gives you the version you are using and the operating system.
gcc versions can be found here.
The C ABI refers to the C Application Binary Interface.
This will differ depending on platform.
Platform specific ABI specifications include:
Very important for C/C++ and assembly programmers.
The Microsoft C/C++ Optimizing Compiler is making a comeback.
Building an EXE with a decent UI is as easy as this two step process:
1. Opening "Developer Command Prompt" in Windows (hit windows key and type "Developer..")
2. cl /EHsc mySuperUI user32.lib gdi32.lib
Bye bye heavy frameworks which rely on Windows API functions anyway.