Difference between printf and sprintf?
sprintf: a function that puts together a string, output goes to an array of char instead of stdout
printf: prints to stdout
sprintf: a function that puts together a string, output goes to an array of char instead of stdout
printf: prints to stdout