Home » C Programming » Data Types » Question
  1. What will be the output of the following C code?
    #include <stdio.h>
    int main()
    {
    float fl = 15.621212121212;
    printf("%f", fl);
    }
    1. 15.621212121212
    2. Compilation Error
    3. Garbage value
    4. 15.621212
    5. None of these
Correct Option: D

15.621212



Your comments will be displayed only after manual approval.