What is data structure in c++?
No Answer is Posted For this Question
Be the First to Post Answer
What is the use of function pointer?
Show the declaration for a pointer to function returning long and taking an integer parameter.
if int1 has the value 12, int has the value 18, and int3 has the value 21, what is the result: int1 < int2 && int2 < int 3
Explain the difference between realloc() and free() in c++?
What is cin clear () in c++?
What are the three forms of cin.get() and what are their differences?
what is C++ objects?
Write a program which uses Command Line Arguments
Define a program that reads two matrices of size 3x3 with real values from the user then prints their sum, difference and multiplication.
Explain pass by value and pass by reference.
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;
How delete [] is different from delete?