The text of this article is not in this database — only its details are. The old site it was published on is gone, but the Internet Archive kept a copy: Clearing the Console Screen using API
Join the conversation! Your thoughts help the community grow.
Sign in to leave a comment
It is the same account you read, post and publish with — and you will come straight back to this page.

Sam HobbsPosted Feb 9, 2011, 9:38 PM
Thank you for a very informative article. There is one minor point I want to mention though. Unions in C and C++ have members that share memory; the members are not merged in the manner of occupying separate storage. So in your example of two 16-bit integers dwSizeX and dwSizeY, the union would be 16 bits and both dwSizeX and dwSizeY would occupy the same memory location. Other than that, I think your article is flawless.