
Jump to address in variable?
Quote:
>How would you (in portable c) place a list of addresses in an array and then
>jump to the new address?
You don't.
It is, of course, possible to store function pointers in an array of function
pointers, and to call the functions indirectly thereby, but portable C doesn't
support a direct "jump" like that. I believe that GCC provides such a
capability as an extension, but you may really want to reconsider your
problem-solving methodology.