Can we have an array of strings?

Like if we want to do -
string arr[10];
Can we have an array of strings?

Yes u can create array of strings.
try out this:
string arr[10];
for(int i=0;i<5;i++){
cin>>arr[i];
cout<<arr[i]<<endl;;
}
for some input like this:
ab
cde
ed
were
efr

1 Like

Thanks a lot! :blush: I highly appreciate your reply.

1 Like

I hope I’ve cleared your doubt. I ask you to please rate your experience here
Your feedback is very important. It helps us improve our platform and hence provide you
the learning experience you deserve.

On the off chance, you still have some questions or not find the answers satisfactory, you may reopen
the doubt.