could anyone explain me please what does this piece of code mean?
int **d= (int**)malloc((m+1)*sizeof(int));
What are those ** for the d and the (int) ? Are they someway related to pointers?
could anyone explain me please what does this piece of code mean?
int **d= (int**)malloc((m+1)*sizeof(int));
What are those ** for the d and the (int) ? Are they someway related to pointers?
int** d; //pointer to a pointer to an integer