Concept Flow - Printf and sprintf formatting
Start
Prepare format string
Provide values to format
Call printf or sprintf
printf: Output formatted string directly
sprintf: Return formatted string
End
The program prepares a format string and values, then calls printf or sprintf to format the string. printf prints it directly, sprintf returns it.