I’m working on an application in MS Visual Studio 2010, which opens an OpenGL window and renders things. However, I would like to see the output of various prinf’s I have in my code. How do I enable / view the console output?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You will have to use OutputDebugString() to get output displayed in the Visual Studio Output window. Linking your own version of printf is the easiest way to avoid editing your code.