User Tools

Site Tools


c:stdio.h:sprintf

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

c:stdio.h:sprintf [2024/02/16 01:05] (current)
Line 1: Line 1:
 +{{keywords>wiki library source code example reference}}
 +====== sprintf ======
 +<code c>
 +#include <stdio.h> /* including standard library */
 +//#include <windows.h> /* uncomment this for Windows */
 +
 +    int sprintf(char *str, const char *format, ...);
 +</code>
 +Like fprintf, but output written into string s, which must be large enough to hold the output, rather than to a stream. Output is NUL-terminated. Returns length (excluding the terminating NUL).
 +    
 +<code c>
 +/* 
 + * sprintf example code
 + * http://code-reference.com/c/stdio.h/sprintf 
 + */
 +
 +#include <stdio.h> /* including standard library */
 +//#include <windows.h> /* uncomment this for Windows */
 +
 +
 +int main( void ) {
 +
 +    char string[11];
 +    int integer_variable = 42;
 +    
 +   sprintf( string, "%d", integer_variable );
 +   printf("%s\n",string);
 +return 0;
 +}
 +</code>
  

on the occasion of the current invasion of Russia in Ukraine

Russian Stop this War
c/stdio.h/sprintf.txt · Last modified: 2024/02/16 01:05 (external edit)

Impressum Datenschutz