C语言指向函数的指针

函数是由指令序列构成的,其代码存储在连成一片的内存单元中,这些代码中的第一个代码所在的内存地址称为首地址。

首地址是函数的入口地址。主函数在调用子函数时,就是让程序转移到函数的入口地址去执行。

#include 
using namespace std;
int sum = 0;
int m = 0;
void food1(){
	cout<<"drink"<>choice;
		switch (choice)
	{
	case 1:
		p[0]();
		break;
	case 2:
		p[1]();
		break;
	case 0:
		break;
	default:
		cout<<"Please input right number";
		}
	}while (choice!=0);
	cout<<"sum="<


你可能感兴趣的:(C/C++)