Code::Blocks Forums

User forums => Using Code::Blocks => Topic started by: wanggaoteng on October 11, 2017, 10:15:06 am

Title: How to display all the outputs in the output window?
Post by: wanggaoteng on October 11, 2017, 10:15:06 am
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:
Code
#include "stdio.h"
int main()
{
    int i;
    for(i=0;i<1000;i++)
        printf("%d\n",i);
    return 0;
}
Title: Re: How to display all the outputs in the output window?
Post by: BlueHazzard on October 11, 2017, 10:52:47 am
not related to codeblocks...
https://stackoverflow.com/questions/1740876/more-lines-in-command-window
Title: Re: How to display all the outputs in the output window?
Post by: wanggaoteng on October 11, 2017, 02:11:48 pm
not related to codeblocks...
https://stackoverflow.com/questions/1740876/more-lines-in-command-window
Hi,BlueHazzard
Thanks a lot!