Arrays of Function Pointers

Learn how to create arrays of pointers to a function.

We'll cover the following...

Introduction

Similar to how we can have arrays of ints, chars, and int* (integer pointers), we can have arrays of function pointers.

Each element inside the array will be a pointer to a function. Since each element must have the same type, the functions must have matching ...