C++ Programming Question:
Download Questions PDF

Suppose that data is an array of 1000 integers. Write a single function call that will sort the 100 elements data [222] through data [321].

Answer:

quicksort ((data + 222), 100);

Download C++ Programming Interview Questions And Answers PDF

Previous QuestionNext Question
What is the difference between an object and a class?What is a C++ class?