Regarding C vs. Assembler: I'd still pick C because
* :
- It is more portable than an assembly language
* - It's much more readable than an assembly language
* - The C Programming Language_ is perhaps the best concise introduction to any language
* - There is a much larger code base of C out there to download and study, if you really want to see what the language can do.
And even though it provides a certain level of abstraction, C is still close enough to the machine that it will make you think about what is happening inside the box. And that mentality will help you program better in whatever language you ultimately use.
