Go back to Richel Bilderbeek's homepage.
Go back to Richel Bilderbeek's C++ page.
A compiler is a program that translates your C++ code to object code, after which it is linked (by the linker) to an executable.
A compiler might emit compile warnings and compile errors.
Compile cleanly at high warning levels [1]. Prefer compile errors to runtime errors [2].
How to use Qt Creator to compile C code?
In the project file, add the following lines:
QMAKE_CXX = gcc |
How to set the C compiler to the C99 standard in Qt Creator?
In the project file, add the following lines:
QMAKE_C = gcc |
Go back to Richel Bilderbeek's C++ page.
Go back to Richel Bilderbeek's homepage.