Typedef Zeiger
typedef ListNode *ListNodePtr;
Rich Ratel
typedef ListNode *ListNodePtr;
typedef int (*t_somefunc)(int,int);
int product(int u, int v) {
return u*v;
}
t_somefunc afunc = &product;
...
int x2 = (*afunc)(123, 456); // call product() to calculate 123*456