Skip to content
Snippets Groups Projects
Commit a9f47283 authored by orestis.malaspin's avatar orestis.malaspin
Browse files

corrections typos

parent b6f8cfa6
No related branches found
No related tags found
No related merge requests found
......@@ -6,7 +6,7 @@
## Pointeurs de fonctions (1/2)
- COnsidérons la fonction `max` retournant la valeur maximale d'un tableau
- Considérons la fonction `max` retournant la valeur maximale d'un tableau
```C
int max(int *t, int size) {
......@@ -30,7 +30,7 @@
int (*pmax)(int *, int);
```
- Le type doit être déclaré avec la signature de la fonction.
- On peut alors utiliser l'un ou l'autre indiféremment
- On peut alors utiliser l'un ou l'autre indifféremment
```C
int (*pmax)(int *, int);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment