What do you mean by internal linking and external linking in c++?
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 |
What are member functions used in c++?
What does the following code do: int c=0; cout< a) Undefined *Updated* b) 01 c) 00
What is null pointer and void pointer and what is their use?
Explain the auto storage classes in c++.
What are keywords in c++?
what is pre-processor in C++?
How the programmer of a class should decide whether to declare member function or a friend function?
In a function declaration, what does extern mean?
What return value must conversion operators have in their declaration?
What is a constructor and how is it called?
Why seem interrupt handlers as member functions to be impossible?
What is a linked list in c++?