Though I read that the StringCchPrintf function replaces the printf function, as I understand it ..... It actually seems to just add a prior step.
With StringCchPrintf, you are safely writing a string to a buffer.
You must then use the printf function (or another deprecated variation) to dump the buffer to the console window. Correct?
If true, wouldn't you usually need to have #define strsafe_no_deprecate ?
.....in order to print the string to the console window?
There is no way to use StringCchPrintf alone to both write the buffer and dump it to the console window, am I right?
Thanks, Ed