User Tools

Site Tools


Sidebar

Programming Reference/Librarys

Question & Answer

Q&A is closed







c:stdio.h:sprintf

sprintf

#include <stdio.h> /* including standard library */
//#include <windows.h> /* uncomment this for Windows */
 
    int sprintf(char *str, const char *format, ...);

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).

/* 
 * 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;
}

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