This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
| cpp:functionpointer [2018/06/21 13:19] – ↷ Page moved from snippets:cpp:functionpointer to cpp:functionpointer allspark | cpp:functionpointer [2018/10/30 07:58] (current) – allspark | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| + | https:// | ||
| + | |||
| + | ```c | ||
| + | void (*(*f[])())() | ||
| + | ``` | ||
| + | |||
| + | http:// | ||
| + | |||
| + | <hidden tips> | ||
| + | |||
| + | `f[]` = array | ||
| + | |||
| + | `void (*f)()` = pointer to function returning void | ||
| + | |||
| + | ```cpp | ||
| + | using innerF = std:: | ||
| + | |||
| + | std:: | ||
| + | ``` | ||
| + | </ | ||
| + | |||
| + | Solution: | ||
| + | <hidden solution> | ||
| + | [[https:// | ||
| + | </ | ||