Write syntax to define friend functions in C++.
No Answer is Posted For this Question
Be the First to Post Answer
Does there exist any other function which can be used to convert an integer or a float to a string?
What is meant by entry controlled loop? What all C++ loops are exit controlled?
Which command properly allocates memory a) char *a=new char[20]; b) char a=new char[20]; c) char a=new char(20.0);
What is the difference between equal to (==) and assignment operator (=)?
How does com provide language transparency?
Describe public access specifiers?
class HasStatic { static int I; }; Referring to the sample code above, what is the appropriate method of defining the member variable "I", and assigning it the value 10, outside of the class declaration? a) HasStatic I = 10; b) int static I = 10; c) static I(10); d) static I = 10; e) int HasStatic::I = 10;
Why use of template is better than a base class?
What is the basic of c++?
What is the difference between structures and unions?
Explain the ISA and HASA class relationships. How would you implement each in a class design?
What will happen if when say delete this ?