STL (140)
OOPS (873)
C++ General (2409)
INSTANCE FIELDS DECLARED private ARE ACCESSIBLE BY THE METHODS ONLY.CAN WE CHANGE THE private FIELD OF AN OBJECT IN A METHOD OF SOME OTHER OBJECT OF THE SAME CLASS?
Explain the difference between c & c++?
What new()is different from malloc()?
What are the 2 main types of data structures?
What is basic if statement syntax?
What is #include cstdlib in c++?
To modify an, existing worksheet. What steps are involved for: 1. Inserting and deleting rows and columns. 2. Printing cell formulas 3Jld displayed values 3. Using the page setup command
What is ofstream c++?
Write a program using merge () function to combine the elements of array x[ ] and y[ ] into array z[ ].
Why do we use string in c++?
What is difference between polymorphism and inheritance?
Explain overriding.
Which type does string inherit from?
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 are function prototypes?