ISRO exam 2016 – Question 20 with Solution
In this video we are going to discuss another question which was asked in the exam of ISRO
- What is the output of this C code?
#include<stdio.h>
void main()
{
int k=5;
int *p=&k;
int **m=&p;
printf(“%d %d %d”,k,*p,**m);
}
- 5 5 5
- 5 5 junk
- 5 junk junk
- compile time error