summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAndre Polykanine A.K.A. Menelion ElensĂșlĂ« <andre@oire.org>2017-10-04 22:03:59 +0300
committerGitHub <noreply@github.com>2017-10-04 22:03:59 +0300
commitc70502eae5da7e49c3e7c7f34282037b900736d6 (patch)
treed9b324eecd4f96398f9d7e277d6062da4c2d8c16
parentc7036d6e89852d6ff561f53dcebab2b036d39361 (diff)
parent8f990317b79d17953755269d3383d3f94e9c5f7f (diff)
Merge pull request #2872 from 0xbf00/master
[c/en] Correct off-by-one error
-rw-r--r--c.html.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/c.html.markdown b/c.html.markdown
index 1ff8658c..87a047be 100644
--- a/c.html.markdown
+++ b/c.html.markdown
@@ -348,7 +348,7 @@ int main (int argc, char** argv)
printf("Error occurred at i = %d & j = %d.\n", i, j);
/*
https://ideone.com/GuPhd6
- this will print out "Error occurred at i = 52 & j = 99."
+ this will print out "Error occurred at i = 51 & j = 99."
*/
///////////////////////////////////////