Which Is The Correct Syntax For Extern Function Declaration #1301
Which is the correct syntax for extern function 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.2.
Which is the correct syntax for extern function declaration?
extern function_name(argument_list);
extern return_type function_name(argument_list);
extern (return_type)function_name(argument_list);
return_type extern function_name(argument_list);