News:

Accounts with zero posts and zero activity during the last months will be deleted periodically to fight SPAM!

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;
}