Best Unit Testing Framework for C
Using SDL2 in C
Recent Articles
Have you ever tried to play sounds from within your C Program? Playing a .wav file is a common use case, may it be as a sound effect or background music for your game and/or application. There...
Playing sounds and music in your application or game is a must have. One way to do this is the PortAudio library. But how do you start? PortAudio is a cross-platform open source audio library that...
Programming your game with SDL (respectively SDL2) is a reasonable approach. But how do you make that speakers play your sounds and music? The Simple DirectMedia Layer (SDL) has an audio sub...
Sound and most of the time also music is mandatory if you want to be at least a little bit serious about programming your own game. OpenAL is a good choice for doing this, but how can you even...
The SDL Library is a very good choice when you want to program games. But when you want to write your game in the C programming language without the C++ ballast, can you still use it? The Simple...
Programming Katas are good to prone your skills. A famous Kata is the Bowling Game Kata, often shown as example in Java. But can you do this Kata also in C? In total is the Bowling Game Kata in...