diff options
author | Jakob Rieck <jakobrieck@gmail.com> | 2017-09-25 16:12:53 +0200 |
---|---|---|
committer | Jakob Rieck <jakobrieck@gmail.com> | 2017-09-25 16:12:53 +0200 |
commit | 8f990317b79d17953755269d3383d3f94e9c5f7f (patch) | |
tree | f49d7bdad072a58cba513d278724ff37fcfdfcbd /c.html.markdown | |
parent | a8ad68aede64e0d7a65df0737965cf3d1ab891bb (diff) |
[c/en] Correct off-by-one error
Diffstat (limited to 'c.html.markdown')
-rw-r--r-- | c.html.markdown | 2 |
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." */ /////////////////////////////////////// |