C-programs jointly developed with students during the „Algorithmen und Datenstrukturen“ exercises in winter term 2015/15.
Setup and running instructions:
- Obtain a C-compiler of your choice; I use the Gnu Compiler Collection (gcc).
- Compile the program
name.c
by runninggcc -ansi -Wall -Wextra -Wpedantic name.c
. This will create an executable with the namea.out
. The compiler flags enforce syntactic restrictions that are very close to the description of C in the official lecture material. - To run
a.out
from a unix-like system, type./a.out
.