Examveda

What will be the output of the following C code?
#include<stdio.h>
#include<limits.h>
main()
{
    printf("%f",FLT_MIN);
}

A. Minimum negative value of float

B. Maximum positive value of float

C. Error

D. Minimum positive value of float

Answer: Option C


This Question Belongs to C Program >> Standard Library Functions

Join The Discussion

Related Questions on Standard Library Functions