Author Topic: How to display all the outputs in the output window?  (Read 7302 times)

Offline wanggaoteng

  • Multiple posting newcomer
  • *
  • Posts: 30
How to display all the outputs in the output window?
« 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;
}
« Last Edit: October 11, 2017, 10:17:30 am by wanggaoteng »

Offline BlueHazzard

  • Developer
  • Lives here!
  • *****
  • Posts: 3353

Offline wanggaoteng

  • Multiple posting newcomer
  • *
  • Posts: 30