My question today is - if I write in my code:
string name[32];
what does this mean? Is it means that there is 32 strings name[], with no limit in number of chars? Greetings, Franjo
Yes. It defined a array called 'name' with 32 string elements.
KaiZi
Log in to post a comment.
My question today is - if I write in my code:
string name[32];
what does this mean? Is it means that there is 32 strings name[], with no limit in number of chars? Greetings, Franjo
Yes.
It defined a array called 'name' with 32 string elements.
KaiZi
Yes.
It defined a array called 'name' with 32 string elements.
KaiZi