Skip to content
Snippets Groups Projects

Update structs.md (unsinged int changé en unsigned int)

Merged yassin.elhakoun requested to merge yassin.elhakoun/cours-prog:master into master
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
+ 1
1
@@ -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;
Loading