Language Ccpp Cref Examples FUNCPT2.C

 
/************************************************************************
 *
 * Purpose: 1. Define a pointer to a function with parameters.
 * 2. Point at the function.
 * 3. Execute the function passing parameters to it.
 *
 * Author: M.J. Leslie
 *
 * Date: 04-Jun-95
 *
 ************************************************************************/
int (*fpointer)(int, int);	/* Define a pointer to a function	*/
int add(int, int);		/* Define a few functions.		*/
int sub(int, int);
main()
{
 fpointer = add;		/* Put the address of 'add' in 'fpointer' */
 printf("%d \n", fpointer(4, 5));	/* Execute 'add' and print results */
 fpointer = sub;		/* Repeat for 'sub'			*/
 printf("%d \n", fpointer(6, 2));
}
/************************************************************************/
int add(int a, int b)
{
 return(a + b);
}
/************************************************************************/
int sub(int a, int b)
{
 return(a - b);
}

file: /Techref/language/ccpp/cref/EXAMPLES/funcpt2.c, 0KB, , updated: 1998年4月12日 18:06, local time: 2025年9月8日 15:17,
40.74.122.252:LOG IN

©2025 These pages are served without commercial sponsorship. (No popup ads, etc...).Bandwidth abuse increases hosting cost forcing sponsorship or shutdown. This server aggressively defends against automated copying for any reason including offline viewing, duplication, etc... Please respect this requirement and DO NOT RIP THIS SITE. Questions?
Please DO link to this page! Digg it! / MAKE!

<A HREF="http://techref.massmind.org/techref/language/ccpp/cref/EXAMPLES/funcpt2.c"> language ccpp cref EXAMPLES funcpt2</A>

Did you find what you needed?

Welcome to massmind.org!

Welcome to techref.massmind.org!

.

AltStyle によって変換されたページ (->オリジナル) /