/** * Headert file for structure containing function pointer * @author gtowell * Created: April 2021 * **/ typedef struct qq { int a; int b; void (*printer)(struct qq *); } qq; qq *makeQQ(int a, int b);