C Programming Code Examples C > Functions Code Examples Function pointer: function call Function pointer: function call #include <stdio.h> int *f(int x); int count; int main(void) { int *p; p = f(88); /* return pointer */ printf("count (through p) is %d", *p); return 0; } int *f(int x) { count = x; return &count; /* return a pointer */ }