Which Is The Correct Syntax For Extern Variable Declaration #1300
Which is the correct syntax for extern variable declaration?
This multiple choice question (MCQ) is related to the book/course
gs gs111 OOP Object Oriented Programming Java.
It can also be found in
gs gs111 Memory Allocation & Scope of Variable - OOPs MCQ: Extern Variable - Quiz No.1.
Which is the correct syntax for extern variable declaration?
extern data_type variable_name;
extern variable_name;
data_type variable_name extern;
extern (data_type)variable_name;