Skip to content

Latest commit

 

History

History
7 lines (5 loc) · 407 Bytes

Chapter_13.md

File metadata and controls

7 lines (5 loc) · 407 Bytes

Exercise Solutions Chapter 13

1.

A type called FunctionPtr() that represents a pointer to a function that returns an int and that takes no arguments is defined in this way:

typedef int (*FunctionPtr) (void);

See this question at stackoverflow.com to learn more.