qc.hlp (Table of Contents; Topic list)
FUNCPTR.C
                                             Up Contents Index Back
────────────────────────────────────────────────────────────────────────────
 
/* FUNCPTR.C: Demonstrate function pointers. */
#include <stdio.h>
 
main()
{
   int (*func_ptr) ();
   func_ptr = printf;
   (*func_ptr) ( "Curiouser and curiouser...\n" );
}