Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11 int convert(string *ttab){ int i=0; string s; while (ttab[i]!=NULL){ strcpy(s,ttab[i]); printf("%s",s); i++; } return 0; }
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11 int convert(string *ttab){ int i=0; string s; while (ttab[i]!=NULL){ strcpy(s,ttab[i]); printf("%s",s); i++; } return 0; }
Partager