Function pointer: function call : Function Pointer « Function « C / ANSI-C






Function pointer: function call

  
#include <stdio.h>

int *f(int x);
int count;

int main(void)
{
  int *p;

  p = f(110); /* return pointer */

  printf("count (through p) is %d", *p);

  return 0;
}

int *f(int x)
{
  count = x;

  return &count; /* return a pointer */
}


           
       








Related examples in the same category

1.Implementing arithmetic and array functionsImplementing arithmetic and array functions
2.Pointing to functionsPointing to functions
3.Arrays of Pointers to functionsArrays of Pointers to functions
4.Passing a Pointer to a function
5.Function pointerFunction pointer
6.Function pointer 2
7.Function pointer and use it call a function
8.Array of function pointerArray of function pointer
9.Initialize the function pointer array