1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-08 15:56:47 +02:00

[c/en] Correct off-by-one error

This commit is contained in:
Jakob Rieck
2017-09-25 16:12:53 +02:00
parent a8ad68aede
commit 8f990317b7

View File

@@ -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."
*/
///////////////////////////////////////