Course «Intro to C programming language»: free online education
2026-02-21 02:49 Diff

1

First program in C

Write, compile and run our first program.

2

Variables and loops in C

To learn about variables and loops in C and to write a somewhat more useful program.

3

Float in C

To improve our temperature conversion program by using float insted of int.

4

For loop in C

To learn about another type of loops in C and rewrite the temperature conversion program so that it uses for instead of while.

5

Functions in C

To learn about functions, create our own function and call it.

6

if/else condition

Learn about conditions and complete a classical exercise called Fizz-Buzz.

7

Switch instead of if/else

To learn to use another method of checking conditions: switch.

8

Arrays in C

Explore the data type called "array".