Teach Yourself C in 24 Hours (1997)
aelinik.free.fr
Teach Yourself C in 24 Hours (1997)
1–10 of 83 posts
Re: Teach Yourself C in 24 Hours (1997)
#2Re: Teach Yourself C in 24 Hours (1997)
#3Re: Teach Yourself C in 24 Hours (1997)
#4Re: Teach Yourself C in 24 Hours (1997)
#5Re: Teach Yourself C in 24 Hours (1997)
#6I only opened the first chapter, but I certainly won't recommend a book where things such as "There are two types of programming languages: compiled language and interpreted language." are written.
Re: Teach Yourself C in 24 Hours (1997)
#7As for this particular link, all image links in the text seem to be broken, and a pdf of the book can be found elsewhere.
Re: Teach Yourself C in 24 Hours (1997)
#8Unfortunately I only have 20 hours to learn C.
Re: Teach Yourself C in 24 Hours (1997)
#9I only opened the first chapter, but I certainly won't recommend a book where things such as "There are two types of programming languages: compiled language and interpreted language." are written.
Would you prefer “one of the many ways to categorize languages is into buckets of either compiled or interpreted”?
Even if you only consider compilers and interpreters (in real life there are many in-betweens: bytecode/VW, JIT, etc.), a language is not either interpreted or compiled. Maybe its reference/canonical implementation is an interpreter or a compiler, but that's all.
What would stop anyone from writing a C interpreter? Or a Python compiler?
Now consider OCaml, which canonical distribution comes with the `ocaml` interpreter, and the `ocamlc` and `ocamlopt` compilers: how do you classify the language?
Re: Teach Yourself C in 24 Hours (1997)
#10Unfortunately I only have 20 hours to learn C.