Connecting Tech Pros Worldwide Help | Site Map

"long double" and "printf"

Zero
Guest
 
Posts: n/a
#1: Jun 6 '06
Hi everybody,

i want to write a small program, which shows me the biggest and
smallest number in dependance of the data type.

For int the command could be:

printf("\n%20s\t%7u\t%13i\t%13i","signed int",sizeof(signed
int),INT_MIN,INT_MAX);

But what do I have to do when I want to print out the numbers of data
type "long double".

I tried
printf("\n%20s\t%7u\t%13Lf\t%13Lf","long double",sizeof(long
double),LDBL_MIN,LDBL_MAX);
but this results in

long double 12 0.000000 -1.#QNAN0

Does anybody has a solution.

I tried this with Bloodshed using the gnu-compiler.

Thanks for your help!

pete
Guest
 
Posts: n/a
#2: Jun 6 '06

re: "long double" and "printf"


Zero wrote:[color=blue]
>
> Hi everybody,
>
> i want to write a small program, which shows me the biggest and
> smallest number in dependance of the data type.
>
> For int the command could be:
>
> printf("\n%20s\t%7u\t%13i\t%13i","signed int",sizeof(signed
> int),INT_MIN,INT_MAX);
>
> But what do I have to do when I want to print out the numbers of data
> type "long double".
>
> I tried
> printf("\n%20s\t%7u\t%13Lf\t%13Lf","long double",sizeof(long
> double),LDBL_MIN,LDBL_MAX);
> but this results in
>
> long double 12 0.000000 -1.#QNAN0
>
> Does anybody has a solution.
>
> I tried this with Bloodshed using the gnu-compiler.[/color]

For something like that,
you should try to post a complete program.

/* BEGIN new.c */

#include <stdio.h>
#include <float.h>

int main(void)
{
printf("%s\n%u\n%Le\n%Le\n",
"long double",
(unsigned)sizeof(long double),
LDBL_MIN,
LDBL_MAX);
return 0;
}

/* END new.c */


--
pete
Zero
Guest
 
Posts: n/a
#3: Jun 6 '06

re: "long double" and "printf"



pete wrote:[color=blue]
> Zero wrote:[color=green]
> >
> > Hi everybody,
> >
> > i want to write a small program, which shows me the biggest and
> > smallest number in dependance of the data type.
> >
> > For int the command could be:
> >
> > printf("\n%20s\t%7u\t%13i\t%13i","signed int",sizeof(signed
> > int),INT_MIN,INT_MAX);
> >
> > But what do I have to do when I want to print out the numbers of data
> > type "long double".
> >
> > I tried
> > printf("\n%20s\t%7u\t%13Lf\t%13Lf","long double",sizeof(long
> > double),LDBL_MIN,LDBL_MAX);
> > but this results in
> >
> > long double 12 0.000000 -1.#QNAN0
> >
> > Does anybody has a solution.
> >
> > I tried this with Bloodshed using the gnu-compiler.[/color]
>
> For something like that,
> you should try to post a complete program.
>
> /* BEGIN new.c */
>
> #include <stdio.h>
> #include <float.h>
>
> int main(void)
> {
> printf("%s\n%u\n%Le\n%Le\n",
> "long double",
> (unsigned)sizeof(long double),
> LDBL_MIN,
> LDBL_MAX);
> return 0;
> }
>
> /* END new.c */
>
>
> --
> pete[/color]

Thanks for your help. But i still get this message:

long double
12
0.000000e+000
-1.#QNAN0e+000

??

Richard Bos
Guest
 
Posts: n/a
#4: Jun 6 '06

re: "long double" and "printf"


"Zero" <chefmuetze@web.de> wrote:
[color=blue]
> But what do I have to do when I want to print out the numbers of data
> type "long double".
>
> I tried
> printf("\n%20s\t%7u\t%13Lf\t%13Lf","long double",sizeof(long
> double),LDBL_MIN,LDBL_MAX);
> but this results in
>
> long double 12 0.000000 -1.#QNAN0
>
> Does anybody has a solution.
>
> I tried this with Bloodshed using the gnu-compiler.[/color]

AFAICT this is a bug in Dev-C++. Their library and their headers don't
match on this detail. One (IIRC the header) thinks long doubles are
larger than doubles, the other (IIRC the printf() code) thinks they're
as large as doubles.

Richard
Dik T. Winter
Guest
 
Posts: n/a
#5: Jun 6 '06

re: "long double" and "printf"


In article <1149602363.679848.32320@h76g2000cwa.googlegroups. com> "Zero" <chefmuetze@web.de> writes:
....[color=blue]
> Thanks for your help. But i still get this message:
>
> long double
> 12
> 0.000000e+000
> -1.#QNAN0e+000[/color]

Some older compilers did use 'll' in stead of 'L' for long double.
--
dik t. winter, cwi, kruislaan 413, 1098 sj amsterdam, nederland, +31205924131
home: bovenover 215, 1025 jn amsterdam, nederland; http://www.cwi.nl/~dik/
Zero
Guest
 
Posts: n/a
#6: Jun 6 '06

re: "long double" and "printf"



Zero wrote:[color=blue]
> Hi everybody,
>
> i want to write a small program, which shows me the biggest and
> smallest number in dependance of the data type.
>
> For int the command could be:
>
> printf("\n%20s\t%7u\t%13i\t%13i","signed int",sizeof(signed
> int),INT_MIN,INT_MAX);
>
> But what do I have to do when I want to print out the numbers of data
> type "long double".
>
> I tried
> printf("\n%20s\t%7u\t%13Lf\t%13Lf","long double",sizeof(long
> double),LDBL_MIN,LDBL_MAX);
> but this results in
>
> long double 12 0.000000 -1.#QNAN0
>
> Does anybody has a solution.
>
> I tried this with Bloodshed using the gnu-compiler.
>
> Thanks for your help![/color]

I just tried the code with Visual C++ and there it seems
that there is no difference between double and long double?

Bloodshed says long double consists of 12 Bytes, Visual C++ says 12.
What is right now?

Zero
Guest
 
Posts: n/a
#7: Jun 6 '06

re: "long double" and "printf"



Zero wrote:[color=blue]
> Hi everybody,
>
> i want to write a small program, which shows me the biggest and
> smallest number in dependance of the data type.
>
> For int the command could be:
>
> printf("\n%20s\t%7u\t%13i\t%13i","signed int",sizeof(signed
> int),INT_MIN,INT_MAX);
>
> But what do I have to do when I want to print out the numbers of data
> type "long double".
>
> I tried
> printf("\n%20s\t%7u\t%13Lf\t%13Lf","long double",sizeof(long
> double),LDBL_MIN,LDBL_MAX);
> but this results in
>
> long double 12 0.000000 -1.#QNAN0
>
> Does anybody has a solution.
>
> I tried this with Bloodshed using the gnu-compiler.
>
> Thanks for your help![/color]

I just tried the code with Visual C++ and there it seems
that there is no difference between double and long double?

Bloodshed says long double consists of 12 Bytes, Visual C++ says 8.
What is right now?

Zero
Guest
 
Posts: n/a
#8: Jun 6 '06

re: "long double" and "printf"



Richard Bos wrote:[color=blue]
> "Zero" <chefmuetze@web.de> wrote:
>[color=green]
> > But what do I have to do when I want to print out the numbers of data
> > type "long double".
> >
> > I tried
> > printf("\n%20s\t%7u\t%13Lf\t%13Lf","long double",sizeof(long
> > double),LDBL_MIN,LDBL_MAX);
> > but this results in
> >
> > long double 12 0.000000 -1.#QNAN0
> >
> > Does anybody has a solution.
> >
> > I tried this with Bloodshed using the gnu-compiler.[/color]
>
> AFAICT this is a bug in Dev-C++. Their library and their headers don't
> match on this detail. One (IIRC the header) thinks long doubles are
> larger than doubles, the other (IIRC the printf() code) thinks they're
> as large as doubles.
>
> Richard[/color]

How do you know that this is a bug? Is there a side, where this
information can be fetched?

Flash Gordon
Guest
 
Posts: n/a
#9: Jun 6 '06

re: "long double" and "printf"


Zero wrote:

<snip>
[color=blue][color=green]
>> I tried
>> printf("\n%20s\t%7u\t%13Lf\t%13Lf","long double",sizeof(long
>> double),LDBL_MIN,LDBL_MAX);
>> but this results in
>>
>> long double 12 0.000000 -1.#QNAN0
>>
>> Does anybody has a solution.
>>
>> I tried this with Bloodshed using the gnu-compiler.
>>
>> Thanks for your help![/color]
>
> I just tried the code with Visual C++ and there it seems
> that there is no difference between double and long double?
>
> Bloodshed says long double consists of 12 Bytes, Visual C++ says 8.
> What is right now?[/color]

Both. The C standard does not mandate exact sizes only minimums.
--
Flash Gordon, living in interesting times.
Web site - http://home.flash-gordon.me.uk/
comp.lang.c posting guidelines and intro:
http://clc-wiki.net/wiki/Intro_to_clc
Tim Prince
Guest
 
Posts: n/a
#10: Jun 6 '06

re: "long double" and "printf"


Flash Gordon wrote:[color=blue]
> Zero wrote:
>
> <snip>
>[color=green][color=darkred]
>>> I tried
>>> printf("\n%20s\t%7u\t%13Lf\t%13Lf","long double",sizeof(long
>>> double),LDBL_MIN,LDBL_MAX);
>>> but this results in
>>>
>>> long double 12 0.000000 -1.#QNAN0
>>>
>>> Does anybody has a solution.
>>>
>>> I tried this with Bloodshed using the gnu-compiler.
>>>
>>> Thanks for your help![/color]
>>
>> I just tried the code with Visual C++ and there it seems
>> that there is no difference between double and long double?
>>
>> Bloodshed says long double consists of 12 Bytes, Visual C++ says 8.
>> What is right now?[/color]
>
> Both. The C standard does not mandate exact sizes only minimums.[/color]
Besides, the amount of unused storage doesn't directly answer your
problem. Few of us would know whether specifying Bloodshed implies a
specific version of gcc and run-time library. Run-time libraries
associated with Windows versions of gcc which I have used didn't
implement 10-byte long double in printf(), even though it might be
supported in terms of basic operators. If it uses Visual C++ printf(),
evidently there will be no support for more than 8-byte data type.
Dann Corbit
Guest
 
Posts: n/a
#11: Jun 6 '06

re: "long double" and "printf"


"Dik T. Winter" <Dik.Winter@cwi.nl> wrote in message
news:J0FzDt.9zw@cwi.nl...[color=blue]
> In article <1149602363.679848.32320@h76g2000cwa.googlegroups. com> "Zero"
> <chefmuetze@web.de> writes:
> ...[color=green]
> > Thanks for your help. But i still get this message:
> >
> > long double
> > 12
> > 0.000000e+000
> > -1.#QNAN0e+000[/color]
>
> Some older compilers did use 'll' in stead of 'L' for long double.[/color]

I guess that he is using the GCC MINGW compiler which creates 80 bit
hardware long doubles, but which the Microsoft runtime libraries do not
match (for MS VC++ double and long double are the same type).
[color=blue]
> --
> dik t. winter, cwi, kruislaan 413, 1098 sj amsterdam, nederland,
> +31205924131
> home: bovenover 215, 1025 jn amsterdam, nederland;
> http://www.cwi.nl/~dik/[/color]


jacob navia
Guest
 
Posts: n/a
#12: Jun 6 '06

re: "long double" and "printf"


pete a écrit :[color=blue]
>
> For something like that,
> you should try to post a complete program.
>
> /* BEGIN new.c */
>
> #include <stdio.h>
> #include <float.h>
>
> int main(void)
> {
> printf("%s\n%u\n%Le\n%Le\n",
> "long double",
> (unsigned)sizeof(long double),
> LDBL_MIN,
> LDBL_MAX);
> return 0;
> }
>
> /* END new.c */
>
>[/color]


This produces:
long double
12
3.362103e-4932
1.189731e+4932

with lcc-win32
Richard Bos
Guest
 
Posts: n/a
#13: Jun 8 '06

re: "long double" and "printf"


"Zero" <chefmuetze@web.de> wrote:
[color=blue]
> Richard Bos wrote:[color=green]
> > "Zero" <chefmuetze@web.de> wrote:[/color][/color]
[color=blue][color=green][color=darkred]
> > > I tried
> > > printf("\n%20s\t%7u\t%13Lf\t%13Lf","long double",sizeof(long
> > > double),LDBL_MIN,LDBL_MAX);
> > > but this results in
> > >
> > > long double 12 0.000000 -1.#QNAN0[/color][/color][/color]
[color=blue][color=green]
> > AFAICT this is a bug in Dev-C++. Their library and their headers don't
> > match on this detail. One (IIRC the header) thinks long doubles are
> > larger than doubles, the other (IIRC the printf() code) thinks they're
> > as large as doubles.[/color]
>
> How do you know that this is a bug?[/color]

For starters, because the behaviour you observe is not correct. There
was a c.l.c thread on this very problem some time ago; if you search for
it I'm sure you can find it. In that thread, some people (including me)
did some experiments and concluded that it had to be a mismatch
somewhere in Dev-C++.

Richard
Closed Thread