What will be the output of the following C code?
#include <stdio.h>
#include <limits.h>
int main()
{
printf("The minimum value of LONG = %lf\n", LONG_MIN);
return 0;
}
#include <stdio.h>
#include <limits.h>
int main()
{
printf("The minimum value of LONG = %lf\n", LONG_MIN);
return 0;
}A. -2147483648 (The minimum value of LONG)
B. 0.000000
C. 0
D. error
Answer: Option B

Join The Discussion