Interview Questions

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].

C++ Interview Questions and Answers


(Continued from previous question...)

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].

quicksort ((data + 222), 100);

(Continued on next question...)

Other Interview Questions