c++

来源:互联网 发布:mac开机显示问号文件夹 编辑:程序博客网 时间:2024/06/05 19:09
int snprintf ( char * s, size_t n, const char * format, ... );

Write formatted output to sized buffer

Composes a string with the same text that would be printed if format was used onprintf, but instead of being printed, the content is stored as aC string in the buffer pointed bys (taking n as the maximum buffer capacity to fill).

If the resulting string would be longer than n-1 characters, the remaining characters are discarded and not stored, but counted for the value returned by the function.

A terminating null character is automatically appended after the content written.

After the format parameter, the function expects at least as many additional arguments as needed forformat.

s
Pointer to a buffer where the resulting C-string is stored.
The buffer should have a size of at least n characters.
n
Maximum number of bytes to be used in the buffer.
The generated string has a length of at most n-1, leaving space for the additional terminating null character.
size_t is an unsigned integral type.
format
C string that contains a format string that follows the same specifications asformat inprintf (seeprintf for details).
... (additional arguments)
Depending on the format string, the function may expect a sequence of additional arguments, each containing a value to be used to replace aformat specifier in theformat string (or a pointer to a storage location, forn).
There should be at least as many of these arguments as the number of values specified in theformat specifiers. Additional arguments are ignored by the function.
The number of characters that would have been written if n had been sufficiently large, not counting the terminatingnull character.
If an encoding error occurs, a negative number is returned.
Notice that only when this returned value is non-negative and less than n, the string has been completely written.

/* snprintf example */#include <stdio.h>int main (){  char buffer [100];  int cx;  cx = snprintf ( buffer, 100, "The half of %d is %d", 60, 60/2 );  snprintf ( buffer+cx, 100-cx, ", and the half of that is %d.", 60/2/2 );  puts (buffer);  return 0;}

0 0