logo

sprintf() v C

Syntax:

vikas divyakirti
int sprintf(char *str, const char *string,...);>

Vrátit se:



If successful, it returns the total number of characters written excluding null-character appended in the string, in case of failure a negative number is returned .>

sprintf je zkratka pro String print. Místo tisku na konzoli ukládá výstup do vyrovnávací paměti znaků, které jsou specifikovány ve sprintf.

C








// Example program to demonstrate sprintf()> #include> int> main()> {> >char> buffer[50];> >int> a = 10, b = 20, c;> >c = a + b;> >sprintf>(buffer,>'Sum of %d and %d is %d'>, a, b, c);> >// The string 'sum of 10 and 20 is 30' is stored> >// into buffer instead of printing on stdout> >printf>(>'%s'>, buffer);> >return> 0;> }>

>

>

Výstup

Sum of 10 and 20 is 30>

Časová složitost: O(n) , kde n je počet prvků uložených ve vyrovnávací paměti.
Pomocný prostor: O(n) , kde n je počet prvků uložených ve vyrovnávací paměti.