-
Arithmetic Operations using Operator Overloading
Write a program for all the four arithmetic operations in float data type using operator overloading concept.
-
-
Invoke the virtual toString() function
To invoke the virtual toString() function defined in GeometricObject from a Circle object c, use :A. ((GeometricObject*)c)->toString();B. c.super.toString()C. (GeometricObject*)c->toString();D. c->GeometricObject::toString()
-
-
-
-
-
Concatenate two circular linked lists
Write a program to concatenate two circular linked lists into a single circular list.
-
Reversing Linked List
How to reverse a linked list using only one pointer?
-
-
Count Number of characters using Pointers
Write a program to count the number of characters in a string using pointers.
-
-
-
-
-
-
Inline Function Advantages
What are the advantages of inline functions over macros?
-
Top Down and Bottom up Approach
Why we fallow top down approach in c-language and bottom up approach in c++?explain?
-
Default Constructor
What is the Default Constructor?
-
C++ Interview Questions
Ans