◄Up► ◄Contents► ◄Index► ◄Back► ──────────────────────────────────────────────────────────────────────────── Compiler error C2501 'identifier' : missing decl-specifiers The identifier was declared without specifying its type. This error occurs when a type specifier is omitted in the declaration of an identifier. The following is an example of this error: int func(); pf = &func; // error int (*pf)() = &func; // OK -♦-