Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

ecvt(3) [v7 man page]

ECVT(3) 						     Library Functions Manual							   ECVT(3)

NAME
ecvt, fcvt, gcvt - output conversion SYNOPSIS
char *ecvt(value, ndigit, decpt, sign) double value; int ndigit, *decpt, *sign; char *fcvt(value, ndigit, decpt, sign) double value; int ndigit, *decpt, *sign; char *gcvt(value, ndigit, buf) double value; char *buf; DESCRIPTION
Ecvt converts the value to a null-terminated string of ndigit ASCII digits and returns a pointer thereto. The position of the decimal point relative to the beginning of the string is stored indirectly through decpt (negative means to the left of the returned digits). If the sign of the result is negative, the word pointed to by sign is non-zero, otherwise it is zero. The low-order digit is rounded. Fcvt is identical to ecvt, except that the correct digit has been rounded for Fortran F-format output of the number of digits specified by ndigits. Gcvt converts the value to a null-terminated ASCII string in buf and returns a pointer to buf. It attempts to produce ndigit significant digits in Fortran F format if possible, otherwise E format, ready for printing. Trailing zeros may be suppressed. SEE ALSO
printf(3) BUGS
The return values point to static data whose content is overwritten by each call. ECVT(3)

Check Out this Related Man Page

ecvt(3) 						     Library Functions Manual							   ecvt(3)

Name
       ecvt, fcvt, gcvt - output conversion

Syntax
       char *ecvt(value, ndigit, decpt, sign)
       double value;
       int ndigit, *decpt, *sign;

       char *fcvt(value, ndigit, decpt, sign)
       double value;
       int ndigit, *decpt, *sign;

       char *gcvt(value, ndigit, buf)
       double value;
       char *buf;

Description
       The routine converts the value to a null-terminated string of ndigit ASCII digits and returns a pointer thereto.  The position of the radix
       character relative to the beginning of the string is stored indirectly through decpt (negative means to the left of the	returned  digits).
       If the sign of the result is negative, the word pointed to by sign is non-zero, otherwise it is zero.  The low-order digit is rounded.

       The routine is identical to except that the correct digit has been rounded for FORTRAN F-format output of the number of digits specified by
       ndigits.

       The routine converts the value to a null-terminated ASCII string in buf and returns a pointer to buf.  It attempts to produce  ndigit  sig-
       nificant digits in FORTRAN F format if possible, otherwise E format is used, ready for printing.  Trailing zeros may be suppressed.

       The  symbol used to represent a radix character is obtained from the last successful call to category The symbol can be determined by call-
       ing:
       nl_langinfo (RADIXCHAR);

       If category has not been called successfully, or if the radix character is not defined  for  a  supported  language,  the  radix  character
       defaults to a period (.).

   International Environment
       LC_NUMERIC     If  this	environment  is set and valid, uses the international language database named in the definition to determine radix
		      character rules.

       LANG	      If this environment is set and valid, uses the international language database named in the definition  to  determine  radix
		      character rules. If is defined, its definition supercedes the definition of

Restrictions
       The return values point to static data whose content is overwritten by each call.

See Also
       setlocale(3), nl_langinfo(3int), printf(3int), printf(3s)
       Guide to Developing International Software

																	   ecvt(3)
Man Page

5 More Discussions You Might Find Interesting

1. Programming

need help on some converting command

Hi all, i am trying to use C in unix platform to convert a double variable (floating point) to a string variable. i tried using sprintf, ecvt, fcvt,gcvt. but all gave me funny output or altered the content. does anyone know how to convert the data and keep the original content. for... (3 Replies)
Discussion started by: szeliat
3 Replies

2. Shell Programming and Scripting

Can any One Help me Please

I Have alog file growing every milliseconds , actually it's for Securitey Trading over the web. the file look like this : 00:13,045 INFO : FIXEngine: INFO: FIXConnection.processMsg(fixID=sama): read... (6 Replies)
Discussion started by: habuzahra
6 Replies

3. Programming

scandir() and threads

I couldn't find anywhere informations about it. Is scandir() thread-safe? (4 Replies)
Discussion started by: dawwin
4 Replies

4. Programming

C code : Segmentation fault

Hi Friends, I have written a small code in C which performs the below operations Task : 1 ) read line by line from a file. 2 ) assuming 3th and 4th fields of the file as GN and GNTO 3 ) The target file should contain all the fields except GNTO. 4... (3 Replies)
Discussion started by: kiran_bhatter
3 Replies

5. Ubuntu

Photo not added in latex, Ubuntu 14.04

Hello, I am not sure if this problem belong to this section but I am quite puzzled, so seeking help here. I have cv latex format found online from site . I am using following command line to get the pdf out of it, but somehow the document is missing the PHOTO. I am not sure if its feature of the... (0 Replies)
Discussion started by: emily
0 Replies