what will be the output of this code snippet
includestdio.h
int main()
{
int gamer ;
int *pro_gamer;
int **gone_gamer;

pro_gamer = &gamer;
gone_gamer = &pro_gamer;
printf("%p\n", gone_gamer);
return 1;
}

Posted on by