consider the following line in the c++ code extern "C" { f1(); f2();... } The purpose of the extern keyword is

  1. They tell the C++ compiler that they are functions compiled by a C compiler , So that they can be used in C++

  2. they mean that the function are declared somewhere and defined somewhere

  3. They improve performance

  4. They are used with extern variables.


Correct Option: A

Find more quizzes: