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.

23 lines
479 B

#include "sae.h"
void testF(void)
{
int n=0;
int Tref[100]={0};
float Tpoid[100]={0},Tvolume[100]={0},Tprix[100]={0};
n = TableArticle(Tref,Tpoid,Tvolume,Tprix);
AffichTable(Tref,Tpoid,Tvolume,Tprix,n);
printf("\n");
ModifArticle(Tref,Tpoid,Tvolume,Tprix,n);
printf("\n");
AffichTable(Tref,Tpoid,Tvolume,Tprix,n);
}
int main(void)
{
testF();
//AjoutArticle();
//TableArticle();
//ModifArticle();
return 0; //cette instruction sert a dire au sys que prog termine
}