-
-
-
-
Count Number of characters using Pointers
Write a program to count the number of characters in a string using pointers.
-
-
Reversing Linked List
How to reverse a linked list using only one pointer?
-
Concatenate two circular linked lists
Write a program to concatenate two circular linked lists into a single circular list.
-
-
DLL Application
What are DLLs? How they are used in the applications?
-
-
-
-
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()
-
-
Arithmetic Operations using Operator Overloading
Write a program for all the four arithmetic operations in float data type using operator overloading concept.
-
-
-
-
-
Will the program run successfully?
Main(){ int a=2.9; float b=9; cin>>"%d %f">>a>>b; return();}
C++ Interview Questions
Ans