// function.cpp : Defines the entry point for the console application.//
#include "stdafx.h"#include
int max(int a,int b){ return a>b?a:b;}
int min(int a,int b){ return a }
int add(int a,int b){ return a+b;}
int process(int a,int b,int (*p)(int,int)){ return (*p)(a,b);}int main(