

MCQOPTIONS
Saved Bookmarks
1. |
What will be the output of the program? #include int main() { typedef float f; static f *fptr; float fval = 90; fptr = &fval; printf("%f\n", *fptr); return 0; } |
A. | 9 |
B. | 0 |
C. | 90 |
D. | 90 |
Answer» D. 90 | |