struct S
{
int (*fptr)();
};
int
foo()
return 0;
}
main()
struct S v;
v.fptr = foo;
return v.fptr();