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
When would you use a pointer? A reference?
CDPATH shell variable is in(c-shell)
What is the difference between realloc() and free() in C++?
What is constant keyword in C++? Illustrate its various uses.
0 Answers Akamai Technologies, Infogain,
Write a C++ Program to Find whether given Number is Odd or Even.
What is the difference between malloc, calloc and realloc?
Write a C++ Program to Display Number (Entered by the User).
What does malloc return in C and C++?
Explain the difference between method overriding and method overloading in C++?
Write a C++ Program to Check Whether a character is Vowel or Consonant.
Identify the errors in the following program. #include <iostream> using namespace std; void main() { int i=5; while(i) { switch(i) { default: case 4: case 5: break; case 1: continue; case 2: case 3: break; } i-; } }
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?