как ининциализировать?
char **buffer;
buffer = malloc(15 * sizeof(char*) + 1); // Valgring ругается фразой Uninitialised value was created by a heap allocation
for (int i = 0; i < 15; i++){
buffer[i] = malloc(20 + 1);
printf("%s", buffer[i]); // Valgring ругается фразой Use of uninitialised value of size 8
}
// Освобождаю память так
for (int i = 0; i < 15; i++)
free(buffer[i]);
free(buffer);