how to see complete output in visual c++ 2008

315 Views Asked by At

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 displays only last 20-25 results. Is it possible to all of the results at once?

1

There are 1 best solutions below

1
On

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.