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.
10 lines
488 B
10 lines
488 B
#include <stdio.h>
|
|
|
|
void AjoutArticle(void);
|
|
void ModifArticle(int Tref[], float Tpoid[],float Tvolume[],float Tprix[],int n);
|
|
int TableArticle(int Tref[], float Tpoid[],float Tvolume[],float Tprix[]);
|
|
void AffichTable(int Tref[], float Tpoid[],float Tvolume[],float Tprix[],int n);
|
|
void EcrireFichier(int Tref[], float Tpoid[],float Tvolume[],float Tprix[],int n);
|
|
void SupprArticle(int Tref[], float Tpoid[],float Tvolume[],float Tprix[],int n);
|
|
int posRef(int Tref[],int refR, int n);
|