Execute the qsort () in c/sort() in c++ library or your own custom sort which will sort any type of data on user defined criteria.
No Answer is Posted For this Question
Be the First to Post Answer
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; }
Tell us the size of a float variable.
What do you know about Volatile keyword in C++? Explain with an example code.
In C++ what is the meaning of data hiding?
Explain the operator overloading feature in C++ ?
Write a program to display the following output using a single cout statement Maths=90 Physics=77 Chemistry = 69
Write a program that ask for user input from 5 to 9 then calculate the average
How to stop class inheritance in C++ with condition that object creation should be allowed
What is the difference between malloc, calloc and realloc?
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?
Factory Method C++ – How to delete pointers returned by it