Functions HI-TECH C SPRINTF

Revision as of 23:48, 31 July 2017 by Kumokosi (talk | contribs) (Created page with "<strong>SPRINTF</strong> ==SYNOPSIS== #include <stdio.h> int sprintf(char * buf, char * fmt, ...); int vsprintf(char * buf, char * fmt, va_list ap); ==DESCRIPTION== <...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

SPRINTF

SYNOPSIS

#include  <stdio.h>

int sprintf(char * buf, char * fmt, ...);
int vsprintf(char * buf, char * fmt, va_list ap);


DESCRIPTION

Sprintf() operates in a similar fashion to printf(), except that instead of placing the converted output on the stdout stream, the characters are placed in the buffer at buf. The resultant string will be null-terminated, and the number of characters in the buffer will be returned. Vsprintf takes an argument pointer rather than a list of arguments.

SEE ALSO

printf, fprintf, sscanf