Vidyalelo
Data Structure · Q298

Sorting Algorithms

Programming · Data Structure · question 298

Q298

What will be the output of the given C++ code? #include using namespace std; int main() int arr[] = 1, 3,4,2,5; int n = sizeof(arr)/sizeof(arr[0]); sort(arr+2, arr+n, greater ()); int a; for (int a = 0; a < n; a++) cout << arr[a] << " "; return 0;

A.
1 2 3 4 5
B.
1 5 4 3 2
C.
5 4 3 2 1
D.
1 3 5 4 2
Answer

Answer: Option D

Solution

Answer: Option D
No explanation is given for this question Let's Discuss on Board