diff options
Diffstat (limited to 'c.html.markdown')
-rw-r--r-- | c.html.markdown | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/c.html.markdown b/c.html.markdown index f67f6c4a..d075ea0e 100644 --- a/c.html.markdown +++ b/c.html.markdown @@ -264,6 +264,7 @@ int main() { // *****NOTES*****: // Loops MUST always have a body. If no body is needed, do: + int i; for (i = 0; i <= 5; i++) { ; // use semicolon to act as the body (null statement) } |