HTML Diff
0 added 0 removed
Original 2026-01-01
Modified 2026-02-21
1 <p>1</p>
1 <p>1</p>
2 <a>First program in C</a><p>Write, compile and run our first program.</p>
2 <a>First program in C</a><p>Write, compile and run our first program.</p>
3 <p>2</p>
3 <p>2</p>
4 <a>Variables and loops in C</a><p>To learn about variables and loops in C and to write a somewhat more useful program.</p>
4 <a>Variables and loops in C</a><p>To learn about variables and loops in C and to write a somewhat more useful program.</p>
5 <p>3</p>
5 <p>3</p>
6 <a>Float in C</a><p>To improve our temperature conversion program by using float insted of int.</p>
6 <a>Float in C</a><p>To improve our temperature conversion program by using float insted of int.</p>
7 <p>4</p>
7 <p>4</p>
8 <a>For loop in C</a><p>To learn about another type of loops in C and rewrite the temperature conversion program so that it uses for instead of while.</p>
8 <a>For loop in C</a><p>To learn about another type of loops in C and rewrite the temperature conversion program so that it uses for instead of while.</p>
9 <p>5</p>
9 <p>5</p>
10 <a>Functions in C</a><p>To learn about functions, create our own function and call it.</p>
10 <a>Functions in C</a><p>To learn about functions, create our own function and call it.</p>
11 <p>6</p>
11 <p>6</p>
12 <a>if/else condition</a><p>Learn about conditions and complete a classical exercise called Fizz-Buzz.</p>
12 <a>if/else condition</a><p>Learn about conditions and complete a classical exercise called Fizz-Buzz.</p>
13 <p>7</p>
13 <p>7</p>
14 <a>Switch instead of if/else</a><p>To learn to use another method of checking conditions: switch.</p>
14 <a>Switch instead of if/else</a><p>To learn to use another method of checking conditions: switch.</p>
15 <p>8</p>
15 <p>8</p>
16 <a>Arrays in C</a><p>Explore the data type called "array".</p>
16 <a>Arrays in C</a><p>Explore the data type called "array".</p>