User profile: rocktheartsm4l

User info
User name:rocktheartsm4l
Name:Shane
Location:California
Bio:I've taken two programming classes so far in my computer science major. I'm taking this very seriously and i feel like i might have a knack for it. If you comment on any of my posts, please give me constructive criticism. I want to tighten up my coding skills so i can move on to more advanced problems. Also if you have any fun programming problems that are intermediate level please PM me the spec!! =D

-Shane
History
Joined:
Number of posts:7
Latest posts:

Function Pointers and void*
Here's what I came up with if anyone is interested: [code]void SSTool::funUI(void (*f[]) (void*), s...

Function Pointers and void*
Thanks guys. I ended up coming to the same solution as fun2code. it works great thank you =D And i ...

what the point of recursion?
These guys are right recursion has its uses. If you can't understand why now just trust us. You will...

Function Pointers and void*
I'm trying to initialize an array of function pointers. my typedef: [code]typedef void (*fPtr) (v...

Function Pointers
i figured out my problem. it was in the process implementation. should have been. [code]void proces...