hello,
i had a problem with my developing with C using GNU
..
i'd tried to print on the screen result of
smallest non zero values of long double and print with %.3Le
and the output is -0.000e+000
this is my code :
#include <stdio.h>
#include <stdlib.h>
#include <limits.h>
#include <float.h>
printf("\n\nThe size of the largest value of type \"long double\" is \n %.3Le", LDBL_MAX);
this is BUG on the compiler or NOT ?
thx