how to see complete output in visual c++ 2008
my program's output is very big, like I run for loop for 100 times, displaying 5-6 lines every time. Problem is, when I run output, it display开发者_开发百科s only last 20-25 results. Is it possible to all of the results at once?
Is this a console app or a GUI app? If console, you can make the screen buffer size bigger - select the Properties menu item from the console icon in the upper left corner and go to Layout tab, change the Height in the Screen Buffer size to something much larger.
精彩评论