Compiler Error 88

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


All wikipages