Date: Mon, 1 Dec 1997 23:27:04 +0500 (GMT) From: Guillermo Porras To: Jamie Love cc: DJGPP mailing list Subject: Re: converting floats to strings In-Reply-To: <199712020026.NAA17553@fep1-orange.clear.net.nz> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Precedence: bulk On Wed, 3 Dec 1997, Jamie Love wrote: > hi, my problem is summed up in the subject. Is there a function that can > convert float variables to strings? float float_number ; char *string ; /*I use */ sprintf ( string ,"%f", float_number ) ; I recomend using a decimal precision- Exmpl: %.3f (for 3 decimal precision ). > > Jamie Love > now on the web at http://www.geocities.com/SiliconValley/Horizon/4532 > e-mail me at jamie DOT love AT clear DOT net DOT nz >