STL (140)
OOPS (873)
C++ General (2409) Write a program using merge () function to combine the elements of array x[ ] and y[ ] into array z[ ].
1116Write some differences between an external iterator and an internal iterator? Describe the advantage of an external iterator.
1122Differentiate between an external iterator and an internal iterator? What is the advantage of an external iterator.
1107
Why do we need oop?
write a program to find 2^n+1 ?
Describe new operator?
What operators can you overload in c++?
Why do we use using namespace std in c++?
Is c++ free?
daily Routine of father
What is &x in c++?
Write a program to find the Fibonacci series recursively.
What is #include iomanip?
Write a program that can take input from 3 to 8 and calculate the average?
What is pure virtual function?
Can we get the value of ios format flags?
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?
A prime number is a number which is divisible only by itself and 1. Examples of the first few primes are 2, 3, 5, 7, 11. Consider writing a program which can generate prime numbers for you. Your program should read in and set a maximum prime to generate and a minimum number to start with when looking for primes. This program should be able to perform the following tasks: 1. Read the maximum number from user (keyboard input) to look for primes. The program should not return any primes greater than this number. 2. Read the minimum number from user (keyboard input) to look for primes. The program should not return any primes less than this number. 3. Generate and print out every prime number between the maximum prime and minimum number specified by the user.