What do you want to see in Learn C The Hard Way?
11–20 of 127 posts
Re: What do you want to see in Learn C The Hard Way?
#12I saw Zed mention the same title on his blog once. His idea was to provide something for programmers with experience in other languages and some basic knowledge of C. As I fit in that category, I'd like to see something beyond K&R. Especially some stuff on organizing modern projects written in C, makefiles etc.
Re: What do you want to see in Learn C The Hard Way?
#13Re: What do you want to see in Learn C The Hard Way?
#14Re: What do you want to see in Learn C The Hard Way?
#15Make sure you explain pointers well, the additional level of indirection introduced by them is usually hard to grasp for beginners. Show the relation between pointers and arrays. Offer some best practices on using pointers. Explain the most common caveats like buffer overflows, problems with null terminated strings or off by one errors.
Even better, make sure you explain function pointers well.
Re: What do you want to see in Learn C The Hard Way?
#16Lots of segmentation fault diagnosis
I'll consider some "break it and fix it" exercises for diagnosing these kinds of problems though.
Re: What do you want to see in Learn C The Hard Way?
#17Re: What do you want to see in Learn C The Hard Way?
#18Just one request: Would you be able to release individual chapters as you are done with them instead of waiting to finish the whole book? Thanks!
Re: What do you want to see in Learn C The Hard Way?
#19Honestly the closer you stay to the spirit of K&R the better the site would be. I've looked at a lot of C books over the years and K&R is the only one I thought was even decent.
Re: What do you want to see in Learn C The Hard Way?
#20Other than K&R (which everyone knows about), what is the current CW on best C books?