Header: stdio.h
Syntax:
extern int sprintf
(
char *s,
const char *format,
...
);
Purpose: This function is equivalent to fprintf except that the argument s specifies an array into which the generated output is to be written, rather than to a stream. The stream is null terminated. Returns the number of characters output (excluding the null terminator).
|
|
|