Clear_the_line функция () удаляет указанные строки на экране. Кодирование функция выглядит следующим образом :
/*Функция для очистки линии от экрана, по строке указывается количество*/
void clear_the_line(unsigned int row)
{
unsigned int column;
/* There are 80 Columns in a Row (Line) */
for(column=1;column<=80;column++)
{
gotoxy(column,row);
cprintf(" "); /* Clear With " " */
}
}
Замечания по кодированию :
Функция используется для четко определенной строки на экране. Называется функцией с числом строке, которая должна быть очищена от экрана.
| Sample Chapters from book DATA RECOVERY WITH AND WITHOUT PROGRAMMING by Author Tarun Tyagi |
|
Publishers of the Book
Number of Pages
ISBN
Price of the Book
|
BPB Publications, New Delhi, India
540
81-7656-922-4
$69.00 (Including Shipping Charges, Cost of Book and Other expenses, Free Source Code CD included with the Book)
|
 |
|
|