Kizspy Question: 29
(Choose 1 answer)
PUBVERSLOV.Com
What is the result displayed on the screen of the following program?
#include <stdio.h>
void level2(int** ppa)
{
printf("%d\n", **ppa);
void level1 (int* pa)
level2(&pa);
}
main()
{
int a = 10;
level1(&a);
A. The address of variable a
B. The address of the pointer pa
C. The address of the double pointer ppa
D. 10