
-----------------------------------
CHINA_yanglei
Sun Mar 22, 2009 3:41 am

The problem about the pointer of function and the calling of a subfunction
-----------------------------------
#include 
void FileFunc();
void EditFunc();
int main()
{   
	void (*funcp)();
	funcp=FileFunc;
	(*funcp)();
	funcp=EditFunc;
	(*funcp)();

    return 0;
}
void Filefunc()
{
	std::cout