Post Made Community Wiki by Community
show/hide this revision's text 2 deleted 32 characters in body

C is valuable to understand the following:

  • Pointers and addresses
  • C-style strings (null terminated)
  • Dynamic arrays (malloc( n * sizeof(int) )
  • Memory management & the pain associated with it (malloc/free)
  • Bitwise manipulations, issues like big/litte endian byte order
  • OS primitives & signals
  • Common problems: Segmentation faults, core dumps, following NULL pointers

Learning about these topics is different from building an a full OS or compiler -- you (which is what C is "good for"), since it's overkill in most cases. You could start with a simple program to allocate an array and walk through memory. Then make a linked list and follow it along.

It's valuable to see how these concepts work under the hood, but they usually aren't necessary on a day-to-day level.

Lastly, use Use a good debugger like GDB so you can step through your program and see what's going on. C can be painful otherwise.

It's valuable to see how these concepts work under the hood, but they usually aren't necessary on a day-to-day level.

show/hide this revision's text 1

C is valuable to understand the following:

  • Pointers and addresses
  • C-style strings (null terminated)
  • Dynamic arrays (malloc( n * sizeof(int) )
  • Memory management & the pain associated with it (malloc/free)
  • Bitwise manipulations, issues like big/litte endian byte order
  • OS primitives & signals
  • Common problems: Segmentation faults, core dumps, following NULL pointers

Learning about these topics is different from building an OS or compiler -- you could start with a simple program to allocate and walk through memory. Then make a linked list and follow it along.

It's valuable to see how these concepts work under the hood, but they usually aren't necessary on a day-to-day level.

Lastly, use a good debugger like GDB so you can step through your program and see what's going on. C can be painful otherwise.