/************************************************************************ * * 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 01:32, local time: 2024/11/23 11:55,
52.15.217.86: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? <A HREF="http://sxlist.com/Techref/language/ccpp/Cref/EXAMPLES/func_point2.c"> language ccpp Cref EXAMPLES func_point2</A> |
Did you find what you needed? |
Welcome to sxlist.com!sales, advertizing, & kind contributors just like you! Please don't rip/copy (here's why Copies of the site on CD are available at minimal cost. |
Welcome to sxlist.com! |
.