News:

The new Release 25.03 is out! You can download binaries for Windows and many major Linux distros here .

Main Menu

How to display all the outputs in the output window?

Started by wanggaoteng, October 11, 2017, 10:15:06 AM

Previous topic - Next topic

wanggaoteng

Hi, i use codeblocks to learn c program, but i get a problem these days. I want to get all the outputs in the output window, but unfortunately, some outputs are not displayed. Is there anyway to display all the outputs?
The test code:

#include "stdio.h"
int main()
{
    int i;
    for(i=0;i<1000;i++)
        printf("%d\n",i);
    return 0;
}