Sail E0 Webinar
Question


What will be the output of the program in TurboC?


#include<stdio.h>
int fun(int **ptr);
int main()
{
int i=10, j=20;
const int *ptr = &i;
printf(" i = %5X", ptr);
printf(" ptr = %d", *ptr);
ptr = &j;
printf(" j = %5X", ptr);
printf(" ptr = %d", *ptr);
return 0;
}
Options:
A .  i= FFE2 ptr=12 j=FFE4 ptr=24
B .  i= FFE4 ptr=10 j=FFE2 ptr=20
C .  i= FFE0 ptr=20 j=FFE1 ptr=30
D .  Garbage value
Answer: Option B



Submit Your Solution Below and Earn Points !
Next Question

Submit Solution

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

Latest Videos

Latest Test Papers