Advanced C Language: Function Pointers Explained
Click the blue words Follow us Function Pointers Functions also have their own addresses; the function name/&function name is the address of the function. 1.1 Basic Form In the study of array pointers, we learned that int arr[5];int (*pa)[5] = &arr;//pa is an array pointer The type of pointer variable pa is int(*)[5]. So what … Read more