Sail E0 Webinar
Question

What will be output of following program?

#include<stdio.h>
int main()
{
int i;
int *j;
int **k;
j = &i;
k = &j;
printf("%u %u %u", i, j, k);
return 0;
}


Options:
A .  3 Address 3
B .  3 Address Address
C .  3 3 3
D .  Compilation error
E .  None of the above
Answer: Option B

Output will be : 3 Address Address




Was this answer helpful ?
Next Question

Submit Solution

Your email address will not be published. Required fields are marked *

Latest Videos

Latest Test Papers