#include<iostream.h> #include<conio.h> main() { clrscr(); int array[10]={1,0,6,4,-5,3,-1,3,9,8}; cout<<\"\\n The contents of the array are : \"<<endl; cout<<\"\\n Elements :\"<<\"\\t\\t Value:\"<<endl; for(int count_1=0;count_1<10;count_1++) { cout<<\"\\t\"<<\" array [\"<<count_1<<\"]\"<<\"\\t\\t\"<<array[count_1] <<endl; } int largest_number=array[0]; for(int count_2=0;count_2<10;count_2++) { if(array[count_2]>largest_number) largest_number=array[count_2]; } cout<<\"\\n The largest number of the array is = \"<<largest_number<<endl; getch(); return 0; }