10 lines
225 B
C
10 lines
225 B
C
|
|
||
|
#include <stdio.h>
|
||
|
#include "fichier_A2.h"
|
||
|
structA2 structA2Creation (int x, int y)
|
||
|
{ printf ("Execution de structA2Creation\n");}
|
||
|
void structA2Afficher (structA2 x)
|
||
|
{ printf ("Execution de structA2Afficher\n");}
|
||
|
|
||
|
|