Printf and Sprintf in C - Printf and Sprintf in C Programming Language
Learn c - c tutorial - Printf and Sprintf in C Programming Language - c examples - c programs
Printf and Sprintf in C Programming Language
Printf()
- Type of operate functions predate C and different names are used notably "format" is known as printf. Printf format strings which provide formatted output.
Sprintf()
- sprintf() function is used to store formatted data as a string and to create strings as output using formatted data.
int sprintf (char *string, const char *form, …);