What are the static members and static member functions?
A static member function can only access static data member, other static member functions and any other functions from outside the class. Static member functions have a class scope and they do not have access to the this pointer of the class.
| Is This Answer Correct ? | 0 Yes | 0 No |
let a,b,c be three integer numbers.write a c++ program with a function void rotate 1()such that a->b->c and c->a.
What is doubly linked list in c++?
How would you use the functions sin(), pow(), sqrt()?
What are vtable and vptr?
If horse and bird inherit virtual public from animal, do their constructors initialize the animal constructor? If pegasus inherits from both horse and bird, how does it initialize animal’s constructor?
Explain the benefits of proper inheritance.
write a c++ program that gives output 1 1 2 1 2 3 1 2 3 4 1 2 3 4 5 using looping statement
What is a local variable?
What are references in c++?
What is the default width for ouputting a long integer using the insertion operator?
What are the benefits of oop in c++?
What are abstract data types in c++?