Reddit Reddit reviews A Retargetable C Compiler: Design and Implementation

We found 5 Reddit comments about A Retargetable C Compiler: Design and Implementation. Here are the top ones, ranked by their Reddit score.

Computers & Technology
Books
Computer Programming
Microsoft C & C++ Windows Programming
Microsoft Programming
A Retargetable C Compiler: Design and Implementation
Used Book in Good Condition
Check price on Amazon

5 Reddit comments about A Retargetable C Compiler: Design and Implementation:

u/G01denW01f11 · 5 pointsr/ProgrammingLanguages

A Retargetable C Compiler: Design and Implementation is a book that compiles to a C compiler in C.

u/mciur · 4 pointsr/programming

Off the top of my head:

u/pjmlp · 2 pointsr/programming

Maybe you missed one of these books:

Compiler Design in C

[A Retargetable C Compiler: Design and Implementation](http://www.amazon.com/Retargetable-Compiler-Design-Implementation/dp/0805316701/ref=sr_1_1?s=books&ie=UTF8&qid=1396702490&
sr=1-1&keywords=A+Retargetable+C+Compiler%3A+Design+and+Implementation)


u/phao · 0 pointsr/C_Programming

Care to elaborate on what you mean by functional program framework?

Are you talking about doing functional programming in C? I think there is a book on that. I think it's this one: http://www.amazon.com/Functional-C-International-Computer-Science/dp/0201419505/ - I'm not so sure though.

Are you talking about building framework/programs that are functional (as in robust, secure, ...)? If that is the case, then there is an interesting book named "C Interfaces and Implementations" going through several kinds of modules you might want to implement in C, and going through how you'd elaborate an interface and an implementation for them => http://www.amazon.com/Interfaces-Implementations-Techniques-Creating-Reusable/dp/0201498413/. This book covers the sort of thing that I believe you should be studying after learning the overall language syntax and semantics, how to combine features of C to solve not so trivial algorithmic problems, and so forth. In summary, it talks about modules design (both interfaces and implementations) in C.

There are more books here, like those listed in here http://www.iso-9899.info/wiki/Books. You can also check some more learning resources here http://www.iso-9899.info/wiki/Usenet and here http://www.iso-9899.info/wiki/Web_resources.

Still on my second interpretation of your functional program framework (because idk much about the first one besides that book "Functional C"), there are tons of very complicated systems built in C, like operating systems, server software, and so forth. And for many of them, there were books written. Here are some software for which you can find books on their design and implementation: