标签: c stack
我有多个由同一函数调用的处理程序。想象一下:
int (*pFunctions[])();
处理程序调用函数主体:
{int a; extern int index; index[pFunctions]();}
在处理程序中是否可以引用a?
a