C++ で 4 つの要素の配列を宣言した場合、これらの要素は値を格納できますか? つまり、次の配列を宣言するとします。
#include <iostream>
int main()
{
int a[4];
double res;
double avg;
avg = res = 0.0;
for(int i=0; i<4; i++)
{
cout<<"Please enter age ";
cin>> a[i];
}
for(int i=0; i<4; i++)
{
cout<< "You have entered these ages " <<a[i];
cout<<endl;
res += a[i];
}
avg = res/4;
cout<< "Total is "<<res <<endl;
cout<< "Avg is "<<avg;
}
上記のプログラムは整数(数値)配列を持つプログラムですが、文字配列では文字配列の要素に任意の値を割り当てることができますか?