Question: How can C++ code call a C function?
- by simply calling the C code
 - there is no way for C++ to call a C function
 - by using extern "C"
 - by importing the source C code
 
Answer: The correct answer of the above question is Option C:by using extern "C"