Friday, November 13, 2009

ADVANCE C PROG

#include
#include

int main(void)

{
clrscr();
cout<<"The function CLREOL clears all characters from the\r\n";
cout<<"cursor position to the end of the line within the\r\n";
gotoxy(12,1);
getch();
delline();//delete hole line
cout<<"current text window, without moving the cursor.\r\n";
cout<<"Press any key to continue . . .";
gotoxy(11, 3);
getch();

clreol();//erase line from choosen one
getch();

return 0;
}

1 comment:

Dharamart.blogspot.in