16 lines
294 B
C
Raw Permalink Normal View History

2020-05-03 14:10:04 +02:00
/// appliA.C
int main()
{
int x, y;
structA1 A1 = structA1Creation (x, y);
structA1Afficher (structA1 A2);
structA1 A2 = structA2Creation (x, y);
structA2Afficher (A2);
structA1 A3 = structA3Creation ( x, y);
structA3Afficher (A3);
return 0;
}