Last updated Unknown Status: Tags: Links: C Variables - C Syntax C Functions Function Pointers 1 2 3 4 5 int foo(char c, int n, char* s) {…} int (*my_function_ptr)(char, int, char*); my_function_ptr = foo; my_function_ptr(‘A’, 10, str); See function_pointers.c Backlinks 1 list from C Functions AND !outgoing(C Functions) References: Created:: 2021-09-29 15:08