What is a local variable?
write a programme to get a character and thier ASCII value
Describe linked list using C++ with an example.
Is multimap sorted c++?
If there are two catch statements, one for base and one for derived, which should come first?
Difference between a copy constructor and an assignment operator.
How do I start a c++ project?
What does flush do?
What is a set in c++?
Reads in the size of a square from the screen; 2. Prints a hollow square of that size out of “-“, “|” and blanks on screen; 3. Prints the same hollow square onto a text file. Your program should work for squares of all side sizes between 1 and 20. --- │ │ │ │ │ │ ---
daily Routine of father
What are single and multiple inheritances in c++?
What are files in c++?
I was a c++ code and was asked to find out the bug in that. The bug was that he declared an object locally in a function and tried to return the pointer to that object. Since the object is local to the function, it no more exists after returning from the function. The pointer, therefore, is invalid outside.
How do you define/declare constants in c++?