Best Unit Testing Framework for C
Using SDL2 in C
Recent Articles
If you are looking for a decent Unit Testing Framework that you can use with C, even in an Embedded Environment, then CppuTest is a good choice. This article explains what CppUTest is and how to...
Sooner or later, every developer needs a String of some sort. Reading and writing text is essential for almost any software. Most languages offer a String type for this task, but how about...
Many people choose C++ almost immediately when they start developing games, and often with good reason. But wouldn't good, old, plain C do the trick for this job? Taken as a whole, both C and C++...
Are you looking to play a Sound in C just by using the PlaySound function Windows provides? Here I'll show you how to use it properly. Using the PlaySound(...) function in Windows from the...
When you develop software, sooner or later you will inevitably come up against the question of how to test it properly at all. What are the options and what should you watch out for? Sourcecode in...
Writing a Windows GUI Application with Windows API was avoided by many programmers due to its complexity, but is it really something to be afraid of? In the WinAPI you essentially need the...