C++ Programmer Question:
Download Questions PDF

Tell us what do you mean by internal linking and external linking in c++?

Answer:

A symbol is said to be linked internally when it can be accessed only from with-in the scope of a single translation unit. By external linking a symbol can be accessed from other translation units as well. This linkage can be controlled by using static and extern keywords.

Download C++ Programmer Interview Questions And Answers PDF

Previous QuestionNext Question
Explain me what is an Object/Instance?Explain what do you mean by pure virtual functions in C++?