Which is the correct syntax for extern variable declaration?
(a) extern data_type variable_name;
(b) extern variable_name;
(c) data_type variable_name extern;
(d) extern (data_type)variable_name;
I have been asked this question in unit test.
Question is taken from Extern Variable topic in section Memory Allocation & Scope of Variable of Object Oriented Programming