| GCC Allowing C++ Code |
| For years, we have been using the gcc compiler to build our source code into executable programs, so you're probably asking yourselves what the big deal is. The big deal is that for the first time ever, C++ code will be used to /write/ the gcc compiler, which has always been written... |
| Read
More... |
|
| Dissecting Duff's Device |
| One of the most confusing pieces of code I have ever had a chance to look at is Duff's Device. At first glance, it seems that your compiler would laugh at you for attempting such a feat. For those of you who haven't yet been introduced to this programming marvel... |
| Read
More... |
|
| To Switch, Or Not To Switch |
| When it comes to making selections in C programming, the obvious first choice of most programmers is the if,else combination. This can become a hassle when there are multiple choices with different or similar outcomes. A simple example of... |
| Read
More... |
|