Explain friend class?
No Answer is Posted For this Question
Be the First to Post Answer
What is c++ programming language?
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 are guid?
What do you mean by a template?
What do the header files usually contains?
Can c++ do everything c can?
What is a "Copy Constructor"?
Write a program to get the value of sin (x) using a library function , when x is given in degrees.
What are the total number of lines written by you in C/C++? What is the most complicated or valuable program written in C/C++?
What is a hash function c++?
How do you remove an element from a set in c++?
Define the operators that can be used with a pointer.