Quelle est la bonne façon d’initialiser char**
? J'obtiens une erreur de couverture - lecture du pointeur non initialisé (UNINIT) lors d'une tentative:
char **values = NULL;
ou
char **values = { NULL };
Cet exemple de programme illustre l’initialisation d’un tableau de chaînes C.
#include <stdio.h>
const char * array[] = {
"First entry",
"Second entry",
"Third entry",
};
#define n_array (sizeof (array) / sizeof (const char *))
int main ()
{
int i;
for (i = 0; i < n_array; i++) {
printf ("%d: %s\n", i, array[i]);
}
return 0;
}
Il imprime ce qui suit:
0: First entry
1: Second entry
2: Third entry
Il suffit de faire char **strings;
, char **strings = NULL
, ou char **strings = {NULL}
mais pour l'initialiser, vous devez utiliser malloc:
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
int main(){
// allocate space for 5 pointers to strings
char **strings = (char**)malloc(5*sizeof(char*));
int i = 0;
//allocate space for each string
// here allocate 50 bytes, which is more than enough for the strings
for(i = 0; i < 5; i++){
printf("%d\n", i);
strings[i] = (char*)malloc(50*sizeof(char));
}
//assign them all something
sprintf(strings[0], "bird goes Tweet");
sprintf(strings[1], "mouse goes squeak");
sprintf(strings[2], "cow goes moo");
sprintf(strings[3], "frog goes croak");
sprintf(strings[4], "what does the fox say?");
// Print it out
for(i = 0; i < 5; i++){
printf("Line #%d(length: %lu): %s\n", i, strlen(strings[i]),strings[i]);
}
//Free each string
for(i = 0; i < 5; i++){
free(strings[i]);
}
//finally release the first string
free(strings);
return 0;
}
Il n'y a pas de bonne façon, mais vous pouvez initialiser un tableau de littéraux:
char **values = (char *[]){"a", "b", "c"};
ou vous pouvez les allouer et les initialiser:
char **values = malloc(sizeof(char*) * s);
for(...)
{
values[i] = malloc(sizeof(char) * l);
//or
values[i] = "hello";
}