Important update: Arm Announces End of Life Timeline for Mbed. This site will be archived in July 2026. Read the full announcement.
Compiler Error 88
Table of Contents
array of functions is illegal¶
- An array of pointers to functions, not an array of functions, can be declared. For example, instead of this:
int (x[10])(); // ERROR: an array of functions
use this:
int (*x[10])(); // OK: an array of pointers to // functions returning int
Source: http://www.digitalmars.com/ctg/ctgCompilerErrors.html