jscourses

Algorithms 2020

Algorithms course examples in C for the 2020–2021 academic year.

Topics and examples

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

Source code

Browse all source files.

Back to Algorithms