windows phone 8 - Debug C++ Runtime Component in a WP8 project -
I have tried a lot of solutions, but none of them is working
- Printf ("Test:% d", 123);
- std :: cout & lt; & Lt; "Test" & lt; & Lt; 123 & lt; & Lt; Std :: endl;
- ...
Actually I have installed the debugger of my project, I am able to write in the console using the OutputDebugStringA ("Test" ");
But this function does not accept more than one parameter.
How can I print something like this: ("Test:% d", 123)
?
Comments
Post a Comment