Display the content in variable d.
int a = 5;
int *b = &a;
int **c=&b;
int ***d = &c;
printf("%p\n",
Answers
Answered by
5
int a = 5
int b = a
int c = b
print f
Answered by
0
Answer:
***d
Explanation:
Similar questions