I have the following code for which I need to no explanation,the doubt is about the seeing the output of all the 256 characters together or page up - page down manner on output window of Turbo C++ compiler.Here is the code to print the ASCII character.
By the way I was told by my teacher about how to view them ,sadly I forgot ,would like some help from you guys :)
Code:
#include<stdio.h>
int main()
{
int ch;
for(ch=0;ch<=255;ch++)
printf("%d%c\n",ch,ch);
return 0;
}