I know about the answer but expecting some more points and examples other than what I know

#include<stdio.h>
#include<stdlib.h>
void double_fun(int **q)
{
    *q=malloc(10);
    **q=10;
}
int main()
{
    int *p;
    double_fun(&p);
    printf("%d \n",*p);
}

What are the advantages of a single pointer? Answer that and then you have the answer for double, triple, quadruple, etc. pointers.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.