-
-
-
What is the difference between structures and classes in C++?
There is only one difference ,in classes the members are private by default whereas it is not so in structures.
-
-
Count Number of characters using Pointers
Write a program to count the number of characters in a string using pointers.
-
What do you mean by inheritance?
Inheritance is the process of creating new classes, called derived classes, from existing classes or base classes. The derived class inherits all the capabilities of the base class, but can add embellishments and refinements of its own.
-
What is encapsulation?
Packaging an object’s variables within its methods is called encapsulation.
-
What do you mean by binding of data and functions?
Encapsulation.
-
-
-
C Double dimensional arrays
How can double dimensional arrays be dynamically initialized in C ?
Reverse A Linked List
What is the most efficient way to reverse a linklist?
C++ without Header files
How we can run our c++ program without header files?
What do you mean by pure virtual functions?
A pure virtual member function is a member function that the base class forces derived classes to provide. Normally these member functions have no implementation. Pure virtual functions are equated to zero. class Shape { public: virtual void draw() = 0; };
Ans