8 lines
221 B
C
8 lines
221 B
C
|
#include <stdio.h>
|
||
|
#include "fichier_A3.h"
|
||
|
structA3 structA3Creation (int x, int y)
|
||
|
{ printf ("Execution de structA3Creation\n");}
|
||
|
void structA3Afficher (structA3 x)
|
||
|
{ printf ("Execution de structA3Afficher\n");}
|
||
|
|