summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorTyler Chong <tylrchong@gmail.com>2017-05-22 22:37:46 -1000
committerven <vendethiel@hotmail.fr>2017-05-23 10:37:46 +0200
commit98f213bc68fe549df5ddcbcc131036ab6cae72ea (patch)
treedc69b88fc86020ebc77fe1a8e78139e9d617a5e1
parentc809a163b4cbd311b89cb3f0e2b348097404a06c (diff)
Update c.html.markdown (#2734)
-rw-r--r--c.html.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/c.html.markdown b/c.html.markdown
index 6d111be6..3da269f9 100644
--- a/c.html.markdown
+++ b/c.html.markdown
@@ -269,7 +269,7 @@ int main (int argc, char** argv)
// While loops exist
int ii = 0;
- while (ii < 10) { //ANY value not zero is true.
+ while (ii < 10) { //ANY value less than ten is true.
printf("%d, ", ii++); // ii++ increments ii AFTER using its current value.
} // => prints "0, 1, 2, 3, 4, 5, 6, 7, 8, 9, "