[Solved] Is it possible to write Tower Defense in C/SDL [closed]


C is a Turing-complete language so anything you can do in some other language can be done in C, too. And SDL provides you with a graphics API which is commonly used for (usually small/indie) games.

Of course it might be more pleasant to write it e.g. in C++ or a higher-level language such as C# or Python – but it’s possible in C nonetheless.

TL;DR: Yes, it is totally possible.

4

solved Is it possible to write Tower Defense in C/SDL [closed]