Date: Tue, 23 Feb 1999 16:06:28 +0200 (IST) From: Eli Zaretskii X-Sender: eliz AT is To: "John B. Coarsey,PE" cc: djgpp AT delorie DOT com Subject: Re: Long Double In-Reply-To: <7au88j$1ql@jolt.jea.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Reply-To: djgpp AT delorie DOT com On Tue, 23 Feb 1999, John B. Coarsey,PE wrote: > I have read through the FAQ and cannot determine if DJGPP will support the > long double data type. Yes, DJGPP supports long double. But the place to look for this info is not in the FAQ, it's in the library docs, e.g., in the docs of the printf function. > would someone post a code snippet showing how to declare and print one. Declare: long double foo = 0.5L; Print: printf ("%Lf", foo);