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;
}
not related to codeblocks...
https://stackoverflow.com/questions/1740876/more-lines-in-command-window
Quote from: BlueHazzard on October 11, 2017, 10:52:47 AM
not related to codeblocks...
https://stackoverflow.com/questions/1740876/more-lines-in-command-window
Hi,BlueHazzard
Thanks a lot!