for(initiation expression,when-to-stop expression,increment expression)For example, you could use the following code to allocate 10 array locations without having to declare each one.
{
}
for(int i=0;i<=10;i+=1)Note for i+=1, you can also use "i++" and it does the same thing.
{
string Array;
Array[i] = ""; // "" = NULL value
}