vote up 10 vote down star
2

Joel and company expound on the virtues of learning C and how the best way to learn a language is to actually write programs using that use it. To that effect, which types of applications are most suitable to the C programming language?

Edit: I am looking for what C is good at. This likely does not coincide with the best way of learning C.

flag
show 2 more comments

31 Answers

prev 1 2
vote up -3 vote down

The short answer is none. The slightly longer answer would be any time you have a system's programming task, and don't have access to any compiler for a better language.

For system's programming tasks, you are far better served by using something as powerful but safer and less error-prone like Ada. For general purpose OO programming, languages like C++, Java, and Ada again are far better choices. For a lot of specific tasks, like string manipulation or website generation, there are domain-specific languages that will make your job much easier for you.

link|flag
prev 1 2

Your Answer

Get an OpenID
or

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