c'est une chaine de caractere :
{
FILE *fic;
FILE *sortie;
char temp[32];
char *cmd;
char retour[30];
char *fileres;
int j;
int i=0;
char *tables_res;
char info[6];
//formation de la chaine pour le chemin du fichier resultat
fileres = malloc((strlen(RESULT_FILE)+strlen(path))*sizeof(c
har));
sprintf(fileres,"%s%s",path,RESULT_FILE);
strcpy(retour," >> " );
strcpy(info, "echo " );
fic = fopen(fichier,"r" );
if(fic != NULL)
{
// system("md result" );
do
{
fscanf(fic, "%s", temp);
tables[i]=malloc(strlen(temp)*sizeof(char));
strcpy(tables[i],temp);
i++;
}
while(!feof(fic));
if (tables[i] == "" ) i--;
fclose(fic);
etc ...