<<<
Index
>>>
for
loop example
#include
<iostream>
void
main() {
int
x =
0
;
for
( x =
0
; x <
5
; ++x ) { std::cout << x; } }
<<<
Index
>>>