Examveda

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;
}

A. -2147483648 (The minimum value of LONG)

B. 0.000000

C. 0

D. error

Answer: Option B


This Question Belongs to C Program >> Standard Library Functions

Join The Discussion

Related Questions on Standard Library Functions