In C language which function is used to clear the output screen
Answers
Answered by
1
Answer:
To clear the screen in Visual C++, utilize the code: system("CLS"); The standard library header file <stdlib. h> is needed. Note: If you wish to clear the screen after a cout statement, you will need to "flush" the iostream
Similar questions