c++ programming
1) Using the array below, display how much grade A are stored inside the array.
char grade[10]={'A','C','B','A','A','D','C','A','B','E'};
OUTPUT:
Quantity of A: 4
2) using array below,
int num[10]={10,2,55,3,4,8,14,9,20,1}
output:
total is 126
highest number is 55