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.
|
#include "tp12.h"
|
|
|
|
void testCharge(void)
|
|
{
|
|
Mat *tab[50];
|
|
int nb;
|
|
char nomFich[20];
|
|
printf("Donnez le nom du fichier :\n");
|
|
scanf("%s", nomFich);
|
|
nb = chargeFmatieres(nomFich, tab, 50);
|
|
if(nb < 0)
|
|
return;
|
|
afficheTmat(tab, nb);
|
|
}
|
|
|
|
int main(void)
|
|
{
|
|
//testCharge();
|
|
global();
|
|
return 0;
|
|
} |