What is a tuple c++?


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

Post New Answer

More C++ General Interview Questions

What is the last index number in an array of 100 characters a) 100 b) 99 c) 101

0 Answers  


What is auto used for in c++?

0 Answers  


difference between the c++ and c languages

4 Answers   Wipro,


write a program that a 5 digit number and calculates 2 power that number and prints it.

2 Answers   Vimukti Technologies,


What is a storage class?

0 Answers  






Explain deep copy?

0 Answers  


What is a local reference?

0 Answers  


Explain the concept of dynamic allocation of memory?

0 Answers  


class A { public: void f(); protected: A() {} A(const A&){} }; Examine the class declaration shown above. Why are the default and copy constructors declared as protected? 1. To ensure that A cannot be created via new by a more derived class 2. To ensure that A cannot be copied 3. To ensure that A cannot be used as a base class except when public inheritance has been used 4. To ensure that A cannot be created/copied outside the inheritance chain 5. To ensure that A cannot be instantiated as a static variable

1 Answers  


How many static variables are created if you put one static member into a template class definition?

0 Answers  


Can you think of a situation where your program would crash without reaching the breakball, which you set at the beginning of main()?

1 Answers  


Out of fgets() and gets() which function is safe to use?

0 Answers  


Categories