What do you mean by function and operator overloading in c++?
What are the implicit member functions of class?
Should I learn c or c++ or c#?
How would you use the functions sin(), pow(), sqrt()?
If a header file is included twice by mistake in the program, will it give any error?
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.
Keyword mean in declaration?
What is a binary file? List the merits and demerits of the binary file usagein C++.
How can you tell what shell you are running on unix system?
What does getch() do according to the ANSI C++ standard a) Reads in a character b) Checks the keyboard buffer c) Nothing in particular (Its not defined there)
Which operator cannot be overloaded c++?
what are the decision making statements in C++? Explain if statement with an example?
Using a smart pointer can we iterate through a container?
Is c++ vector a linked list?
How does class accomplish data hiding in c++?