What is the c++ code?
No Answer is Posted For this Question
Be the First to Post Answer
Write a program in c++ to print the numbers from n to n2 except 5 and its multiples
Why c++ does not have finally?
What will happen if when say delete this ?
How the programmer of a class should decide whether to declare member function or a friend function?
Can a constructor return a value?
Which recursive sorting technique always makes recursive calls to sort subarrays that are about half size of the original array?
What is runtime errors c++?
What is the use of setfill in c++?
Write about an iterator class?
class Foo { const int x; protected: Foo(int f); ~Foo(); }; Foo f; Referring to the sample code above, why will the class declaration not compile? a) The variable x is const. b) The destructor is protected. c) The destructor is not public. d) The constructor is protected. e) There is no default constructor.
What is prototype for that c string function?
State the difference between delete and delete[].