Language Ccpp Cref Examples FUNC_POINT1.C

 
/************************************************************************
 *
 * Purpose: 1. Define a pointer to a function.
 * 2. Point at a function.
 * 3. Execute the function.
 *
 * Author: M.J. Leslie
 *
 * Date: 04-Jun-95
 *
 ************************************************************************/
int (*fpointer)(void);		/* Define a pointer to a function	*/
int func1(void);		/* Define a few functions.		*/
int func2(void);
main()
 {
 fpointer =index.html func1;		/* Put the address of 'func1' in 'fpointer' */
 fpointer();			/* Execute 'func1'			*/
 fpointer = func2;		/* Repeat for 'func2'			*/
 fpointer();
 }
/************************************************************************/
int func1(void)
 {
 puts("martin was ere");
 }
/************************************************************************/
int func2(void)
 {
 puts("alex was ere");
 }

file: /Techref/language/ccpp/cref/EXAMPLES/func_point1.c, 0KB, , updated: 1996年10月9日 02:32, local time: 2025年10月7日 12:16,
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/func_point1.c"> language ccpp cref EXAMPLES func_point1</A>

Did you find what you needed?

Welcome to massmind.org!

Welcome to techref.massmind.org!

.

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