Moving onto sdl

How deep of an understanding of the basics of c++ is required before i move onto sdl? Do i have to master the basics or is just a basic understanding of the concepts enough to get me started with sdl?
knowledge about structures, pointers and dynamic memory allocation regions of memory (stack, heap) are what you need.


and MATH !!
Last edited on
regarding structures, are they any different from classes?
Yes, in C (SDL is implemented in C) structures can *only* contain fields(data members).

in C++, struct is basically same as a class, although the default access is public

This is an incomplete answer, you can learn more by reading the tutorial in this site
Last edited on
Topic archived. No new replies allowed.