+ 3
Free memory in C Programming
How can I free memory of an array of pointers without knowing the size of the array? For example: char *planet[]
4 odpowiedzi
+ 3
thank you Coder Kitten
+ 2
The array is used as parameter for a function. Thanks all, I solved the problem by using pointer to pointer to traverse though the array. Martin Taylor Coder Kitten
+ 1
Thanks 🌹 for the Help
+ 1
char **planets;
planets = malloc(sizeof(char*) * 8);
this function is use for the memory of numbers in c.