Write a program to sort elements of given array having ‘n’ numbers of element, using Selection sort.
Write a program to sort elements of given array having ‘n’ numbers of elements, using Selection sort. #include #include void main() { clrscr(); int size, arr[50], i, j, temp; cout<>size;…