1
vote
What is the real difference between Pointers and References?
If you haven't seen pointers before, you're surely missing out on this mini-gem:
void strcpy(char *dest, char *src)
{
while(*dest++ = *src++);
}
…
0
votes
What are good projects to develop C skills?
Just rewrite all Unix utilities. You'll get an epiphany that I won't want to spoil right now.
…
2
votes
What is the best way to learn C? What next after K&R?
Reading K&R doesn't really do much unless you have done the equivalent of taking a course on machine structures. For instance, learning C is completely useless if you don't know what a stack fr …
