Kizspy Question: 39
(Choose 1 answer)
What will be the output of the following program?
int main()
{
int i=1;
PUUVERFLOW Com
int *p = &i;
int **k = &p;
i+=2:
printf("%d %d %d", *p, **k, *(*k));
getchar();
return 0;
A. 333
B. 111
C. 222
D. Compile error