how do for loops on c++

C++
for ( init; condition; increment ) {
   statement(s);
}
Source

Also in C++: