The "For" Statement

The for statement is mostly good for counters, or getting array values. It looks like this:
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)
{
string Array;
Array[i] = ""; // "" = NULL value
}
Note for i+=1, you can also use "i++" and it does the same thing.