The text of this article is not in this database — only its details are. Read it on the old site: Clearing the Console Screen using API
1 Comment
Join the conversation! Your thoughts help the community grow.
Sign in to leave a comment.
The text of this article is not in this database — only its details are. Read it on the old site: Clearing the Console Screen using API
Join the conversation! Your thoughts help the community grow.
Sign in to leave a comment.
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.