Author: Unknown
Subject: Scope: Where An Identifier Has Meaning
Date: Tuesday, 03 Mar 2020, 22:24:59
In the Scope handout, something like this was written:
void ONE {}
void THREE (int);
static void TWO
(int A4)
{
// ONE() unknown; TWO() and THREE() known
}
I wonder if the ONE() unknown is a type, since I cannot see why ONE() would be unknown here
PREV
INDEX
NEXT