0
How to declare size of array for string?
string array size declaration
3 Antworten
+ 3
For example:
Int a[20];
The memory will give you 20 places to keep your datas in them.
+ 3
For all types are the same I used integer as an example so you can change it to whatever you want.
0
I meant for string arrays. if I want a string arrays.