Best Unit Testing Framework for C
Using SDL2 in C
Recent Articles
Although there are no classes in C you would want to have something like private variables in C. Encapsulation and hiding implementation details can be useful, so how can this be done in the...
When it comes to AI in general, you will find a lot about scripting in Python and learning algorithms. For Game AI you will find a lot about scripting in LUA or algorithms in C++. But when you want...
When you search for tutorials and documentation about OpenGL in the web you will mostly find examples that use C++. But is it also possible to use pure C for programming OpenGL programs? It is...
Inheritance and Polymorphism are two important concepts of Object Oriented Programming (OOP). A procedural language like C does not support this concepts by nature. Is it possible to implement them...
When you first learn C you become aware that it is a so called procedural language. In contrast to object oriented languages there is no concept of a class and no such keyword in C. But is there a...
When I started Unit Testing, I was like most people at the beginning - I wanted to have full code coverage and test every line that I wrote in production code. But is this desirable, let alone...