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

Join The Discussion