22 lines
648 B
C
22 lines
648 B
C
|
#include <stdio.h>
|
||
|
#include "header_A1.h"
|
||
|
structA1 structA1Creation (int x, int y)
|
||
|
{ printf ("Execution de structA1Creation"\n}
|
||
|
void structA1Afficher (structA1 x)
|
||
|
{ printf ("Execution de structA1Afficher"\n}
|
||
|
|
||
|
#include <stdio.h>
|
||
|
#include "header_A2.h"
|
||
|
structA1 structA2Creation (int x, int y)
|
||
|
{ printf ("Execution de structA2Creation"\n}
|
||
|
void structA2Afficher (structA1 x)
|
||
|
{ printf ("Execution de structA2Afficher"\n}
|
||
|
|
||
|
#include <stdio.h>
|
||
|
#include "header_A3.h"
|
||
|
structA1 structA3Creation (int x, int y)
|
||
|
{ printf ("Execution de structA3Creation"\n}
|
||
|
void structA3Afficher (structA3 x)
|
||
|
{ printf ("Execution de structA3Afficher"\n}
|
||
|
|