#include #include typedef int int_m ; int test(void); typedef int (* pFunc)(void); int main() { int_m a; a =10; printf("this a test %d \n",a); printf("***********more*******\n"); pFunc t; t = test; t(); return 0; } int test(void) { printf("typedef used in callback function...\n"); return 0; }