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
How a modifier is similar to mutator?
What is data binding in c++?
What is the best it certification?
Why c++ is not a pure oop language?
What is static function? Explain with an example
Is main a class in c++?
Can you please explain the difference between overloading and overriding?
What is pair in c++?
What is flush () in c++?
What is the best ide for c++?
How are Structure passing and returning implemented by the compiler?
What do you mean by early binding?
Difference between pointer to constant and constant pointer to a constant. Give example.
How is objective c different from c++?
Explain the difference between struct and class in terms of access modifier.