Skip to content

Commit

Permalink
Merge pull request #21 from zuluoaaa/master
Browse files Browse the repository at this point in the history
Fix:Typo in part 10
  • Loading branch information
DoctorWkt authored May 28, 2020
2 parents 60bf3f9 + 9bd9362 commit 531afba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion 10_For_Loops/Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ That's good for compound statements but it won't work for FOR loops.
I would have to write something like:
```c
for (i=1; ; i < 10 ; i= i + 1; )
for (i=1 ; i < 10 ; i= i + 1; )
```

because each assignment statement *must* end with a semicolon.
Expand Down

0 comments on commit 531afba

Please sign in to comment.