Computer Science, asked by akshayaarul22, 8 months ago

Display the content in variable d.
int a = 5;
int *b = &a;
int **c=&b;
int ***d = &c;
printf("%p\n",​

Answers

Answered by Arshalan
5

int a = 5

int b = a

int c = b

print f

Answered by instronsmani
0

Answer:

***d

Explanation:

Similar questions