Simple? question

Instead of including the stdio lib can I use std::sprintf instead?

It was a recommended "Tactic" instead us "using" or am I just really confused (confused is really possible today for some reason)

Doc

Neither, the compiler will take care of it for you. You can use sprintf without the include.

Thank You Very Much, I wasn't aware of that, is all of std "included?" and if it wasn't, what was wrong with the syntax/can it be used to "Selectively" access other functions

Doc