Ever wonder to make an infinite loop its easy to make print up to any number . So why don't make an infinite loop which can go very long for this just using the For command will work although some minor modification have to be done here :-
for(j=0;j<=any number;++j)
Instead of this we can use
for(j=25 ; Leaving this space empty* ; --j )
*just leave the space don't write any thing there
for(j=0;j<=any number;++j)
Instead of this we can use
for(j=25 ; Leaving this space empty* ; --j )
*just leave the space don't write any thing there