Use the knowledge of computational language in C++ to write the a code assembly program to find the largest item.
To make it simpler the code is described as:
#include<bitd/stdc++.h>
Using namespace std;
Int main(){
Int arr[10]={10, 2, 23, 45, 21, 11};
Int min=INT_MAX;
Int max=INT_MIN;
for(int i=0;i<10;i++)
If(min<arr[i])min=arr[i];
for(int j=0;j<10;j++)
if(max>arr[j])max=arr[j];
Cout<<max<<” “<<min<<endl;
return 0;
See more about C++ code at brainly.com/question/19705654