Is it actually possible to create an array of functions. I've looked around and tried different methods but none of them seem to work.
Stuff like: fn[0]();
Is it actually possible is what I want to know or do I need to learn DLL's.
I don't think you can create an array of functions...you might be able to create an array of pointers to functions, although I don't really know how you would go about doing that or if it would even work the way I am thinking it would.
Its plausible as long as it works, its true they are pointers but I wasn't specifically looking out for function arrays as such, just a way to store a bunch of them together.