please dont rip this site

Language Ccpp Cref Examples FUNC_POINT2.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 =index.html 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/func_point2.c, 1KB, , updated: 1996/10/9 02:32, local time: 2024/4/18 20:01,
TOP NEW HELP FIND: 
18.222.184.162: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/func_point2.c"> language ccpp cref EXAMPLES func_point2</A>

Did you find what you needed?

 

Welcome to massmind.org!

 

Welcome to www.massmind.org!

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

  .