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
Differentiate between the message and method in c++?
Why is main an int?
Will a C compiler always compile C++ code a) Yes b) No c) Only optimized compilers
What does n mean in c++?
There are 100 students in a class. The management keep information in two tables. Those two tables are given like Roll no Name Age 001 ABC 15 002 XYZ 14 and Roll No Subject Marks 001 Math 75 001 Physics 55 002 Math 68 001 Hindi 69 They want the information like this Roll No Name Hindi Physics Math Total 001 ABC 69 55 75 199 002 XYZ 68 74 84 226 And Roll No Suject Highest 001 Math 98 007 Physics 84 021 Hindi 74 All 275 All information is kept in structure in main memory. You have to find last two tables.
Write a program to concatenate two strings.
Is c++ a good beginners programming language?
Describe public access specifiers?
What's the hardest coding language?
Why do we need c++?
State the difference between pre and post increment/decrement operations.
What is class definition in c++ ?
what are the types of Member Functions?
What is the best c++ ide?
What is a loop? What are different types of loops in c++?