class A{
private : string a[3];
public : A();
void ShowA();
}
A::A(){ string a[3] = {"aa","bb","cc"} }
void A::ShowA(){
for(int x=0;x<=2;x++){
cout<< a[x];
}
}
int main(){
A a;
a.ShowA();
return 0;
}
In this code, I think the output is aabbcc but there is nothing. Just blank is existed. Could you tell me why it happens and how to fix it. Cheers guys.