csev / cc4e

C Programming for Everybody
https://www.cc4e.com/
Other
262 stars 90 forks source link

Many small changes to markdown of book #28

Closed SarveshMD closed 2 years ago

SarveshMD commented 2 years ago

Corrected lots of markdown in chap01.md and chap06.md. For example, changed something like this printf("%4d %s\n", p-\>keycount, p-\>keyword); to printf("%4d %s\n", p->keycount, p->keyword);. The backslashes in front of greater than and less than signs showed up as backslashed in https://www.cc4e.com/book/chap06.md too. So took those backslashed off. There are still lot more room for corrections. I'll continue making these minor changes to the book so that it looks cleaner and as you mentioned in another pull request, I'll do my best to keep up with the original book's formatting.

csev commented 2 years ago

Thanks.