other sections
SPRINTF(3) | Schily´s LIBRARY FUNCTIONS | SPRINTF(3) |
NAME¶
sprintf() - formats and places output in buffer
SYNOPSIS¶
sprintf(buf,form,arg1...argn) char *buf; char *form;
DESCRIPTION¶
sprintf() is similar to fprintf() except the formatted output is placed into buf.
RETURNS¶
none
SEE ALSO¶
NOTES¶
A NULL ('\0') is appended to the end of the formatted output. There is no check for overflowing the buffer.
15. Juli 1988 | Joerg Schilling |