8 lines
221 B
C
8 lines
221 B
C
|
#include <stdio.h>
|
||
|
#include "fichier_A1.h"
|
||
|
structA1 structA1Creation (int x, int y)
|
||
|
{ printf ("Execution de structA1Creation\n");}
|
||
|
void structA1Afficher (structA1 x)
|
||
|
{ printf ("Execution de structA1Afficher\n");}
|
||
|
|