please dont rip this site

Language Ccpp Cref Examples FUNCPT1.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 = 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/funcpt1.c, 0KB, , updated: 1998/4/12 18:06, local time: 2024/4/19 09:24,
TOP NEW HELP FIND: 
3.145.93.210:LOG IN

 ©2024 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://www.massmind.org/techref/language/ccpp/cref/EXAMPLES/funcpt1.c"> language ccpp cref EXAMPLES funcpt1</A>

Did you find what you needed?

 

Welcome to massmind.org!

 

Welcome to www.massmind.org!

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

  .