What is a tuple c++?
No Answer is Posted For this Question
Be the First to Post Answer
What is the last index number in an array of 100 characters a) 100 b) 99 c) 101
What is auto used for in c++?
difference between the c++ and c languages
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?
Explain deep copy?
What is a local reference?
Explain the concept of dynamic allocation of memory?
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
How many static variables are created if you put one static member into a template class definition?
Can you think of a situation where your program would crash without reaching the breakball, which you set at the beginning of main()?
Out of fgets() and gets() which function is safe to use?