Next:
Contractions
Up:
Mémento C - shell,
Previous:
Boucles
Structures
Structures
typedef struct {
double a;
double b;
} complex;
complex z;
z.a=2;
z.b=3;
typedef struct list {
int val;
struct list *next;
} list;
R.Keriven (Cermics)