L'allocation dynamique
Open Source Your Knowledge, Become a Contributor
Technology knowledge has to be shared and made accessible for free. Join the movement.
Exercice 2 - Base
Ecrire la fonction qui alloue la mémoire d'un vecteur d'entier de taille dimension
, puis qui l'initialise à la valeur val
, int * alloue_vecteur(int dimension, int val)
.
Allocation vecteur
1
2
3
int* alloue_vect(int nb, int val) {
}
Enter to Rename, Shift+Enter to Preview
Open Source Your Knowledge: become a Contributor and help others learn. Create New Content