Sail E0 Webinar
Question


What will be the output of the program?



#include<stdio.h>
int main()
{
typedef float f;
static f *fptr;
float fval = 90;
fptr = &fval;
printf("%f", *fptr);
return 0;
}
Options:
A .  9
B .  0
C .  90
D .  90.000000
Answer: Option D




Submit Your Solution Below and Earn Points !

Submit Solution

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

Latest Videos

Latest Test Papers