Computer Science, asked by soumjoshi273, 1 year ago

what is clrscr in c language ​

Answers

Answered by rohit476075
0

Answer:

"clrscr" function (works in Turbo C compiler only) clears the screen and move cursor to upper left hand corner of screen.

Answered by adityatambe100
1

Explanation:

For C language, using turbo C the function clrscr() defined under conio.h (console input output header) is used to clear the screen. If you go on running the program several times, the output of the program gets longer for each execution. This can be avoided using clrscr()function in the program main() body.

Similar questions