This commit is contained in:
Miloslav Ciz 2024-11-26 14:13:37 +01:00
parent 9c911cc430
commit 232c0266bf
21 changed files with 1928 additions and 1871 deletions

View file

@ -471,7 +471,7 @@ Here comes the nice thing: **we can nest function calls**. For example we can wr
Notice that the `main` function we always have in our programs is also a function definition. The definition of this function is required for runnable programs, its name has to be `main` and it has to return `int` (an error code where 0 means no error). It can also take parameters but more on that later.
These is the most basic knowledge to have about C functions. Let's see one more example with some pecularities that aren't so important now, but will be later.
This is the most basic knowledge to have about C functions. Let's see one more example with some pecularities that aren't so important now, but will be later.
```
#include <stdio.h>