How to input string in C++
No Answer is Posted For this Question
Be the First to Post Answer
What is a virtual base class?
What is meant by exit controlled loop?
Tell me about virtual function
What is the difference between realloc() and free() in C++?
Discuss the role of C++ shorthands.
There is a base class sub, with a member function fnsub(). There are two classes super1 and super2 which are sub classes of the base class sub.if and pointer object is created of the class sub which points to any of the two classes super1 and super2, if fnsub() is called which one will be inoked?
Write a C++ Program to Display Number (Entered by the User).
Identify the error in the following program. #include<iostream.h> void main() { int i = 0; i = i + 1; cout « i « " "; /*comment *//i = i + 1; cout << i; }
How can you force the compiler to not generate them?
In C++ what do you mean by Inheritance?
Write a program to read the values a, b and c and display x, where x=a/b–c. Test the program for the following values: (a) a = 250, b = 85, c = 25 (b) a = 300, b = 70, c = 70
How will you print a list of all unique words from a string which may contain repeated words?