vimwiki
C loops
for
(
int
i
=
0
;
i
<
10
;
i
++
)
{
}
while
(
bool
)
{
}
do
{
}
while
(
bool
)