sprintf() in C
Syntax: int sprintf(char *str, const char *string,...); Return: 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 stands for âString printâ. Instead of printing on console, it sto