Bill Cunningham wrote: > I would like to start writing code and calling functions in C > code with a pointer to a function. This so I can learn functions pointers.
What is it you specifically want to know? If you learn C++ after C, you will see similarities between C++ 'virtual' member functions and C function pointers. Behind the scenes, they are more or less implemented the same way - C++ just has a nicer, more abstract way of using them with fewer typecasts/weird stuff. -- Thomas Hruska CubicleSoft President Ph: 517-803-4197 *NEW* MyTaskFocus 1.1 Get on task. Stay on task. http://www.CubicleSoft.com/MyTaskFocus/
