What is difference between class and structure in c++?
No Answer is Posted For this Question
Be the First to Post Answer
What are the benefits of operator overloading?
Write about a nested class and mention its use?
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;
What is an incomplete type in c++?
What are the storage qualifiers?
const char * char * const What is the differnce between the above two?
What does new return if there is insufficient memory to make your new object?
What is operators in c++?
If we want that any wildcard characters in the command line arguments should be appropriately expanded, are we required to make any special provision? If yes, which?
Differentiate between the message and method?
Mention the ways in which parameterized can be invoked.
Perform addition, multiplication, subtraction of 2-D array using Operator Overloading.