Placeholder
Used to define the unknown (at parse time) type of a value
Example:
struct myStructure {
int myNum;
char myLetter;
};
int main() {
struct myStructure s1;
return 0;
}
Content copied to clipboard
In this example, the type of s1 would be a Placeholder since myStructure is unknown at parse time