Anyways, is it honestly necessary to declare a pointer thats meant to point to another pointer with the double asterisks?
int **pointer
Also is what if, lets say we are passing different variables to a function whose function parameters contains a pointer.
void functionExample(int *ptr){~}
int main(){
int a, b;
int *c;
functionExample(&a);
functionExample(&c); //Pointer to Pointer
So would this cause problems? Since its a pointer to pointer with the receiving pointer being declared with only 1 asterisks.

New Topic/Question
Reply



MultiQuote






|