

MCQOPTIONS
Saved Bookmarks
1. |
What will be the output of the following C code?#include <stdio.h> int main() { float fl = 15.621212121212; printf("%f", fl); } |
A. | 15.621212121212 |
B. | Compilation Error |
C. | Garbage value |
D. | 15.621212 |
E. | None of these |
Answer» E. None of these | |