Incase of a function declaration, what is extern means?
No Answer is Posted For this Question
Be the First to Post Answer
Can a constructor be private?
Why do C++ compilers need name mangling?
How the V-Table mechanism works?
What is the protected keyword used for?
Why use of template is better than a base class?
Which programming language is best to learn first?
What is the sequence of destruction of local objects?
What is the operator in c++?
What is the difference between Pointer and a Reference? When you would use them?
What is the output of: String a1 = "Hello"; String a2 = "world!"; String* s1 = &a2; String& s2 = a1; s1 = &a1; s2 = a2; std::cout << *s1 << " " << s2 << std::endl;
Describe linkages and types of linkages?
What does ios :: app do in c++?