What is the use of 'using' declaration in c++?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C++ General Interview Questions

Can a function take variable length arguments, if yes, how?

0 Answers  


What is std :: endl?

0 Answers  


Explain what happens when a pointer is deleted twice?

0 Answers  


Does there exist any way to make the command line arguments available to other functions without passing them as arguments to the function?

0 Answers  


What is the output of this prog. ? struct A { A(){ cout << \"A\"; } }; struct B { B(){ cout << \"B\"; } }; struct C { C(){ cout << \"C\"; } }; struct D { D(){ cout << \"D\"; } }; struct E : D { E(){ cout << \"E\"; } }; struct F : A, B { C c; D d; E e; F() : B(), A(),d(),c(),e() { cout << \"F\"; } };

2 Answers  


How long does it take to get good at leetcode?

0 Answers  


What is the difference between Char a[ ]=”string” and char *a=”String”

11 Answers   Adobe,


How do you traverse a btree in backward in-order?

0 Answers  


Do you know about C++ 11 standard?

0 Answers   Agilent, ZS Associates,


What is the best book for c++ beginners?

0 Answers  


Write a note about the virtual member function?

0 Answers  


Difference between shift left and shift right?

1 Answers   Symphony,


Categories