How to clear the output screen in C++ program??
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.
Answered by
3
Explanation:
programming language
'clrscr' command to clear the screen
Similar questions