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
No related tags found
No related merge requests found
...@@ -59,7 +59,7 @@ struct fraction frac; // déclaration de frac ...@@ -59,7 +59,7 @@ struct fraction frac; // déclaration de frac
- `typedef`{.C} permet de définir un nouveau type. - `typedef`{.C} permet de définir un nouveau type.
```C ```C
typedef unsinged int uint; typedef unsigned int uint;
typedef struct fraction fraction_t; typedef struct fraction fraction_t;
typedef struct fraction { typedef struct fraction {
int32_t num, denom; int32_t num, denom;
......
...@@ -175,7 +175,7 @@ int k = 0; ...@@ -175,7 +175,7 @@ int k = 0;
do { do {
x[k] = -1; x[k] = -1;
k += 1; k += 1;
} while (k < 9) } while (k < 9);
``` ```
# Représentation des tableaux en mémoire # 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