Skip to content
Snippets Groups Projects
Commit ae61c73f authored by yassin.elhakoun's avatar yassin.elhakoun Committed by orestis.malaspin
Browse files

Yassin.elhakoun master patch 37193

parent dabf5f15
Branches
Tags
1 merge request!7Yassin.elhakoun master patch 37193
......@@ -59,7 +59,7 @@ struct fraction frac; // déclaration de frac
- `typedef`{.C} permet de définir un nouveau type.
```C
typedef unsinged int uint;
typedef unsigned int uint;
typedef struct fraction fraction_t;
typedef struct fraction {
int32_t num, denom;
......
......@@ -175,7 +175,7 @@ int k = 0;
do {
x[k] = -1;
k += 1;
} while (k < 9)
} while (k < 9);
```
# Représentation des tableaux en mémoire
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment