When must you use a pointer rather than a reference?
Tell me can a pure virtual function have an implementation?
what kind of projects are suitable for c and c++
Can static member variables be private?
Are php strings immutable?
In the derived class, which data member of the base class are visible?
List out function which we can call without using object
find the two largest values among the 6 numbers using control structures : do-while,for,if else,nestedif- else ,while. one or two of them.
Is java a c++?
Why is it called c++?
int main() { int i ,a[i]; i = 0; a[i] = 10; cout<< a[i] << endl; return 0; } What will be output of this program?
Describe private, protected and public?
What is the Diffrence between a "assignment operator" and a "copy constructor"?