8 lines
221 B
C
8 lines
221 B
C
|
#include <stdio.h>
|
||
|
#include "fichier_B1.h"
|
||
|
structB1 structB1Creation (int x, int y)
|
||
|
{ printf ("Execution de structB1Creation\n");}
|
||
|
void structB1Afficher (structB1 x)
|
||
|
{ printf ("Execution de structB1Afficher\n");}
|
||
|
|