Author TEKONOLOGY:
This program is very simple and easy, you all might be thinking how could I do such thing with out using a clrscr(); function. (NOTE: Am talking for turbo c editor as well if this code does not wotrk on other edit please alter it). Lets have the code.
#include<stdio.h>
int main(){
int i,j;
for(i=0;i<27;i++){
printf("\n");
for(j=0;j<80;j++)
printf(" ");
}
gotoxy(1,1);
return 0;
}
0 comments:
Post a Comment