I use Dev-C++ , and I have a program in C where the output is not fully shown (only the last part is visible). So, I tried with a simple program and I noticed the same problem , for example here :
#include <stdio.h> #include <stdlib.h> main(){ int i; for(i=0;i<5000;i++){ printf("\n The number is : %d\n",i); } } Well, when the program is finished, I only see in the Console numbers from (4852 to 4999), but I want to see all the output.