sprintf
int sprintf ( char * buffer, const char * format [ , argument , ...] ); | stdio.h |
cplusplus.com |
Print formatted data to a string.
Writes a sequence of arguments to the given buffer
formatted as the format argument specifies.
Parameters.
type | Output | Example |
Character | a | |
Signed decimal integer | 392 | |
Scientific notation (mantise/exponent) using e character | 3.9265e2 | |
Scientific notation (mantise/exponent) using E character | 3.9265E2 | |
Decimal floating point | 392.65 | |
Use shorter %e or %f | 392.65 | |
Use shorter %E or %f | 392.65 | |
Signed octal | 610 | |
String of characters | sample | |
Unsigned decimal integer | 7235 | |
Unsigned hexadecimal integer | 7fa | |
Unsigned hexadecimal integer (capital letters) | 7FA | |
Address pointed by the argument | B800:0000 | |
Nothing printed. The argument must be a pointer to integer where the number of characters written so far will be stored. |
meaning | |
Left align within the given width. (right align is the default). | |
Forces to preceed the result with a sign (+ or -) if signed type. (by default only - (minus) is printed). | |
If the argument is a positive signed value, a blank is inserted before the number. | |
Used with o, x or X type the value is preceeded with 0, 0x or 0X respectively if non-zero. Used with e, E or f forces the output value to contain a decimal point even if only zeros follow. Used with g or G the result is the same as e or E but trailing zeros are not removed. |
meaning | |
Minimum number of characters to be printed. If the value to be printed is shorter than this number the result is padded with blanks. The value is never truncated even if the result is larger. | |
Same as above but filled with 0s instead of blanks. | |
The width is not specified in the format string, it is specified by an integer value preceding the argument thas has to be formatted. |
meaning | |
for d, i, o, u, x, X types: precision specifies the minimum number of decimal digits to be printed. If the value to be printed is shorter than this number the result is padded with blanks. The value is never truncated even if the result is larger.(if nothing specified default is 1). for e, E, f types: number of digits to be printed after de decimal point. (if nothing specified default is 6). for g, G types : maximum number of significant numbers to be printed. for s type: maximum number of characters to be printed. (default is to print until first null character is encountered). for c type : (no effect). |
meaning (affects on how arguments are interpreted by the function) | |
argument is interpreted as short int (integer types). | |
argument is interpreted as long int (interger types) or double (floating point types). | |
argument is interpreted as long double (floating point types). |
Return Value.
On success, the total number of characters printed is returned.
On error, a negative number is returned.
Example.
/* sprintf example */
#include <stdio.h>
main()
{
char buffer [50];
int n, a=5, b=3;
n=sprintf (buffer, "%d plus %d is %d", a, b, a+b);
printf ("[%s] is a %d chars string\n",buffer,n);
return 0;
}
Output:
[5 plus 3 is 8] is a 13 chars string