I was looking around on the Microsoft forums about clearing the console in the Windows Console Application. I was looking for an alternative to system("CLS")
because I heard that it was bad to use and unportable.
All I found was to use system("CLS")
and there weren't any alternatives that seemed to work.
In Visual Studio 2017 (the version I'm using) is it OK1 to use system("CLS")
and system("pause")
?
1)Ok as in it is not bad to use.