Go to the first, previous, next, last section, table of contents.
#include <stdio.h> int sprintf(char *buffer, const char *format, ...);
Sends formatted output from the arguments (...) to the buffer. See section printf.
To avoid buffer overruns, it is safer to use snprintf()
(see section snprintf).
The number of characters written.
ANSI, POSIX
Go to the first, previous, next, last section, table of contents.