GCC

Updated: 11/16/2019 by Computer Hope

Short for GNU Compiler Collection, GCC is a collection of programming compilers including C, C++, Objective-C, Fortran, Java, and Ada. Once installed, a basic C file, like the one shown on our C language page, can be compiled by running the command below.

gcc -o test test.c

In the example above, the GCC compiler uses test as the output file, test.c as the C file, and would create the file test.exe.

Ada, C, C++, Computer acronyms, Fortran, GNU, Java, Programming terms