|
>1. What does the keyword extern mean?
As used, it means that the name is defined elsewhere.
>2. What is the difference between variable definition and declaration?
A declaration tells the compiler that a name exists. A definition allocates storage for that name and optionally initializes the storage with a value.
|