C
C ist eine sehr schöne Programmiersprache. Dieses Jahr wird sie wieder in TechGI_3_(Bachelor) benutzt.
Hello World
#include <stdio.h> #include <stdlib.h> #include <string.h> int main(int argc , char** argv){ printf("Hallo Freitagsrunde 4!\n"); return EXIT_SUCCESS; }
Compileren
gcc -Wall <input.c> -o input
Debugging
Nach dem Compilieren mit Debugging-Informationen kann das Programm aus dem Debugger heraus gestartet werden.
# gcc -Wall <input.c> -o input -ggdb # gdb ./input (gdb) run