Hi,
I can't find the InFAMIX C-to-mse tool anymore (http://www.intooitus.com/products/infamix is answering an access denied error). I would like to see what is generated for code with pointers to functions such as:
int f(int a) { return a+1; }
int g(int a) { return a+2; }
int main() { int a = 5;
int (*func)(int) = g;
a = (*func)(a);
printf("%d\n", a);
return EXIT_SUCCESS; }
Best