You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
646 B
28 lines
646 B
#include "tp5.h"
|
|
|
|
void testSaisieEmployeNbreFormations(void)
|
|
{
|
|
int idEmp, nbForm;
|
|
saisieEmployeNbreFormatrions(&idEmp, &nbForm);
|
|
printf("identifiant : %d nombre de Formations : %d\n", idEmp, nbForm);
|
|
}
|
|
|
|
void testsaisieControleeIemeFormation(void)
|
|
{
|
|
int i, res;
|
|
printf("quel est la formation :");
|
|
scanf("%d", &i);
|
|
res = saisieControleeIemeFormation(i);
|
|
printf("%d", res);
|
|
}
|
|
|
|
int main (void)
|
|
{
|
|
//testSaisieEmployeNbreFormations();
|
|
//testsaisieControleeIemeFormation();
|
|
//enregistrementEmployeNbreFormations();
|
|
traitementFichierEmployes();
|
|
//saisieEmployeNbreFormatrions();
|
|
//saisieControleeIemeFormation();
|
|
return 0;
|
|
} |