I would like return +INF for this program:
int main(void)
{
double dubb = HUGE_VAL;
printf("%f \n", dubb);
}
It seems to return inf and not +INF. Am I over looking something here? Or it is just compiler semantics?
|
Use '+' makes printf display the sign 'F' makes inf/nan uppercase |
||||
|
|
You didn't tell us what C library you have. My man page on linux tells me:
So what you observe seems to be in sync with the C99 standard. Use "%F" to have it all caps, for the |
|||||||||||
|
%+fmight give you '+inf' which is at least part of what you want. – Werner Henze Jan 21 at 8:31