What is std namespace in c++?


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

Post New Answer

More C++ General Interview Questions

Describe functional overloading?

6 Answers   HP,


There is a magic square matrix in such a way that sum of a column or a row are same like 3 5 2 4 3 3 3 2 5 sum of each column and row is 10. you have to check that matrix is magic matrix or not?

1 Answers   TCS,


What are the operators in c++?

0 Answers  


What is #include ctype h in c++?

0 Answers  


Will the inline function be compiled as the inline function always? Justify.

1 Answers  






What is the basic of c++?

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 do you invoke a base member function from a derived class in which you’ve overridden that function?

0 Answers  


What is the difference between an external iterator and an internal iterator? Describe an advantage of the external iterator.

0 Answers  


Is c++ double?

0 Answers  


Should the this pointer can be used in the constructor?

0 Answers  


What is an iterator class in c++?

0 Answers  


Categories