struct nom_de_type
{
champ1;
champ2;
....;
};
struct point { int x; int y; }; |
struct date { int jour; char mois[10]; int annee; }; |
ATTENTION:
La déclaration d'un type structuré NE RESERVE PAS
d'espace mémoire. Elle déclare un nouveau type. |