Algorithms course examples in C for the 2020–2021 academic year.
| Topic | Source code |
|---|---|
| Output, variables, and type limits | bonjour.c, variable.c, variable_char.c, limits.c |
| Input and strings | scanf.c, fgets.c, sscanf.c, string.c |
| Conditions and loops | switch.c, while.c, continue.c |
| Arrays and matrices | tableau.c, tabint.c, matrix.c, matrix2.c |
| Pointers and dereferencing | pointeur.c, deref.c, intderef.c, voidptr.c |
| Dynamic memory allocation | malloc.c, callocint.c |
| Enumerations, structures, and type aliases | enum.c, struct.c, typedef.c |
| Functions and headers | functions.c, main.c, operators.c, operators.h |
| Command line arguments | lignedecommande.c |
| File output and appending | write.c, append.c |