What do you mean by internal linking and external linking in c++?
Answer Posted / hrpynux@gmail.com
Internal linkage refers to everything only in scope of a translation unit. External linkage refers to things that exist beyond a particular translation unit. In other words, accessible through the whole program, which is the combination of all translation units (or object files).
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What are signs of manipulation?
How to declare a function pointer?
what are the characteristics of Class Members in C++?
Define what is constructor?
Is python written in c or c++?
What are static type checking?
What are shallow and deep copy?
Give 10 points of differences between C & C++.
what you know about c++?
Define a constructor - what it is and how it might be called (2 methods)?
How can you quickly find the number of elements stored in a a) static array b) dynamic array ? Why is it difficult to store linked list in an array?how can you find the nodes with repetetive data in a linked list?
What is the difference between the compiler and the preprocessor?
How the endl and setw manipulator works?
What is the benefit of encapsulation?
What is the role of copy constructor in copying of thrown objects?