I started reading The C Programming Language and I have now reached "Chapter 8: The UNIX System Interface." Is that chapter worth reading and still relevant as of today?

link|improve this question
3  
Why is this being closed as "not a real" I wonder? That's a popular concern among newbies - whether they "waste time" on something or "learn something useful" – sharptooth Aug 2 '10 at 12:08
If you want to program on consoles (such as xbox, wii, ps3, DS,etc), some parts of the API are the same or similar. Chances are you will have to work with a server and linux uses a lot of the unix system interface – acidzombie24 Aug 2 '10 at 12:08
feedback

5 Answers

Yes, Linux systems still have the same API - you can write a program like in the samples and exercises of that chapter and compile and run it on almost any Linux. This boils down to being able to write a program that does real things on a real computer - not some emulator only useful for learning purposes.

link|improve this answer
As do Mac and Windows. It's not the preferred API of Windows, but it's there for portability. – Lou Franco Aug 2 '10 at 12:08
Okay. Thanks! :) – Mikey Aug 2 '10 at 12:09
feedback

It's worth reading if you want to program on UNIX or UNIX-like systems - on those it is still relevant. and like all the other chapters in the book, it isn't very long. Reading the section on implementing a storage allocator will give you some valuable insight into how malloc & free work.

link|improve this answer
feedback

All knowledge is useful - never pass up an opportunity to gain more:) Unix and C have intertwined roots.

link|improve this answer
2  
I disagree with All knowledge is useful part but the last part is right. – acidzombie24 Aug 2 '10 at 12:09
The point is to be intelligent enough to be able to seperate useful knowledge from knowledge that you only have to know how things are NOT to be done. – Exa Aug 2 '10 at 13:32
feedback

Put it this way: if you read it and you find it useless, it's because you already knew the stuff. But you won't know the stuff until you read it.

Something like, "in order to understand recursion you must first understand recursion".

More seriously: read it. It will probably take you less time than waiting for an answer here on StackOverflow; furthermore, alhtough you will probably remember only one tenth of it after a week, you will find it useful on the long run because you will start to get a 'general grasp' of some basic concepts that you will encounter over and over again.

Last but not least: what do you have to lose? :)

link|improve this answer
1  
He's probably afraid of learning outdated information, a concern which I wouldn't dismiss as laziness. – UncleZeiv Aug 2 '10 at 13:23
@UncleZeiv: Never be afraid of learning outdated information. Most of my early career is now outdated, but I learned a great deal during it. It may not be efficient to learn outdated information, but in K&R that shouldn't be much of a concern. – David Thornley Aug 2 '10 at 13:54
David: True, but you have the experience to separate the obsolete from the relevant. Beginners don't want to learn using obsolete practices because they don't (yet) have the ability to know the difference. – bstpierre Aug 2 '10 at 14:27
feedback

Well, it all depends on how you perceive 'reading'. That is, if you 'read' to find a 'short-cut' worrying about 'outdated' is much of a concern than a reality. But if you 'read' for pinning down every bit and converting into an earnest sense of graving understanding, 'outdated' will be the last item popping out of your mind.

Understanding how things 'worked', 'working', and 'will work' specially in computing is like the while(1) loop.

Saying this as a general reaction ( entirely personal by the way), if there are forces of urgency perhaps you may want to start from the project and work all the way backwards to reading- sometimes useful as the chances of reading 'outdated' by then will be almost in existent as you read only the materials of your concern.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.