Bonsoir à tous,
je voudrai savoir pkoi ce code ne compile pas?
et comment doit on faire pour initialiser un tableau à partir d'un parametre?
Merci d'avanceCode:
1
2
3
4
5
6 void test(int n) { int tab[n]; // warning: ISO C90 forbids variable-size array 'tab' tab[0]=0; }