Mise à jour de 'src/app/interface/interface_client.c'

pull/2/head
Yannis DOUMIR FERNANDES 2 years ago committed by Mathéo Hersan
parent 8adb475927
commit 12158b954f
No known key found for this signature in database
GPG Key ID: 4EF19C64D78EC91B

@ -65,4 +65,16 @@ void global_client(){
printf("Veuillez entrer un choix valide ! \n");
break;
}
}
void affichAjoutArticle(int *ref, float *poids, float *volume, float *prix)
{
printf("Entrez la ref du nouveaux produit");
scanf("%d", ref);
printf("Entrez le poids du nouveaux produit");
scanf("%f", poids);
printf("Entrez le volume du nouveaux produit");
scanf("%f", volume);
printf("Entrez le prix du nouveaux produit");
scanf("%f", prix);
}
Loading…
Cancel
Save