↧
There is no logical equivalent to conditional statements!
For a long time, I have seen chunks of code in languages such as Lua and Python that claim that they can reproduce the C conditional operator just by using two logical operators, “and” and “or”. The...
View ArticleIntroduction to MFC
The Microsoft Foundation Class library is a framework for Windows GUIs in C++, based on the Win32 API C library. To create a simple window, you need to create an app and a window. The app class handles...
View Article