Where to start (self-)learning C, or should I learn I learn a different language? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T13:11:21Z http://stackoverflow.com/feeds/question/457129 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/457129/where-to-start-self-learning-c-or-should-i-learn-i-learn-a-different-language 4 Where to start (self-)learning C, or should I learn I learn a different language? Aron Rotteveel 2009-01-19T10:13:42Z 2009-10-19T08:33:47Z <p>Lately, I discover more and more that it's good to have extensive knowledge of programming fundamentals. Sadly, I am (one of the many) self-taught PHP developers and have no regrets choosing that path.</p> <p>However, I still think I should extend my knowledge to some "real" programming languages starting from zero and build up my knowledge from there. I have no intention of changing my career path, but I do think it would be good to think out of the web-development box.</p> <p>I prefer not taking classes or courses, because I simply do not have the time for this. So:</p> <ul> <li><p><strong>What is the best way to teach myself C step by step, starting from level zero?</strong></p></li> <li><p><strong>As my main goal is to learn more programming fundamentals, is C even a good choice for this?</strong></p></li> <li><p><strong>If not, what language would be?</strong></p></li> </ul> <p><hr /></p> <p><strong>Summary so far:</strong></p> <p>First of all, thanks for all the great responses. These will be quite helpful. Although most people seem to agree that starting off with C is not a bad choice, I have also seen people state that it is probably a better idea to <strong>skip C and go with C++ or even C#</strong>, since these languages are more current.</p> <p><strong>My personal opinion</strong> is still that it would be good to <strong>start from level zero</strong>, even if the language itself is not <em>directly</em> contributive to the things I make. I still believe it will <em>indirectly</em> make me a better programmer. But then again, like said, my knowledge of these languages is quite limited, so I'd love to hear <strong>your thoughts</strong> on the matter aswell.</p> http://stackoverflow.com/questions/457129/where-to-start-self-learning-c-or-should-i-learn-i-learn-a-different-language/457136#457136 8 Answer by bowens for Where to start (self-)learning C, or should I learn I learn a different language? bowens 2009-01-19T10:15:41Z 2009-01-19T10:15:41Z <p>My first step in picking up C was a copy of "The C Programming Language" - it's a simple book, but the language is itself pretty simple.</p> http://stackoverflow.com/questions/457129/where-to-start-self-learning-c-or-should-i-learn-i-learn-a-different-language/457137#457137 23 Answer by Nick Fortescue for Where to start (self-)learning C, or should I learn I learn a different language? Nick Fortescue 2009-01-19T10:16:04Z 2009-01-19T10:16:04Z <p>Read <a href="http://en.wikipedia.org/wiki/The_C_Programming_Language_(book)" rel="nofollow">Kernighan and Ritchie</a> "The C Programming Language". It is the classic.</p> <p>It is the book written by the original creators of the language. It is short, and very readable and well written.</p> http://stackoverflow.com/questions/457129/where-to-start-self-learning-c-or-should-i-learn-i-learn-a-different-language/457147#457147 1 Answer by Robert Gould for Where to start (self-)learning C, or should I learn I learn a different language? Robert Gould 2009-01-19T10:18:18Z 2009-01-19T10:18:18Z <p>C is a good choice for mainstream education. However before going through books, I'd follow some IDE tutorials, so you get a hang of building projects, and makefiles, those two will be the biggest challenges you'll face initially, and they are rarely covered in any book.</p> http://stackoverflow.com/questions/457129/where-to-start-self-learning-c-or-should-i-learn-i-learn-a-different-language/457150#457150 1 Answer by Nick Fortescue for Where to start (self-)learning C, or should I learn I learn a different language? Nick Fortescue 2009-01-19T10:19:50Z 2009-01-19T10:19:50Z <p>Another option if you want to learn programming fundamentals is to read Knuth's <a href="http://en.wikipedia.org/wiki/The_Art_of_Computer_Programming" rel="nofollow">The Art of Computer Programming</a>. This will introduce you to fundamentals from the very beginning of time. For extra understanding implement the algorithms yourself in C.</p> http://stackoverflow.com/questions/457129/where-to-start-self-learning-c-or-should-i-learn-i-learn-a-different-language/457152#457152 0 Answer by Rakesh for Where to start (self-)learning C, or should I learn I learn a different language? Rakesh 2009-01-19T10:21:06Z 2009-01-19T10:21:06Z <p>Let us C by Yeshvant P Kanitkar</p> http://stackoverflow.com/questions/457129/where-to-start-self-learning-c-or-should-i-learn-i-learn-a-different-language/457154#457154 2 Answer by Peter for Where to start (self-)learning C, or should I learn I learn a different language? Peter 2009-01-19T10:21:30Z 2009-01-19T10:21:30Z <p>If you speek German I'd suggest you an <a href="http://openbook.galileocomputing.de/c_von_a_bis_z/" rel="nofollow">open book from Galileo Computing</a>.</p> http://stackoverflow.com/questions/457129/where-to-start-self-learning-c-or-should-i-learn-i-learn-a-different-language/457158#457158 6 Answer by elliottcable for Where to start (self-)learning C, or should I learn I learn a different language? elliottcable 2009-01-19T10:22:46Z 2009-01-19T10:22:46Z <p>I have to disagree with the previous two answers who recommend the famous "K&amp;R" guide. I was completely unable to learn anything from that book; I simply gave up after reading the first third of the book about three times. Maybe I'm just dumb.</p> <p>I suggest, instead, this wonderful book: <a href="http://rads.stackoverflow.com/amzn/click/0393979504" rel="nofollow">C Programming: A Modern Approach</a> (disclaimer: amazon link)</p> <p>I've learned everything I need to know about C from that book, and it covers the history as much as needs to be done, while still keeping a "modern" point of view.</p> <p>Caveat: I didn't come to C "for C", I passed through it on the way to my eventual goal, Objective-C and Cocoa programming for desktop applications on Apple's Mac OS X. If you really want a very deep knoweldge of C, it may not hurt to get both of the above-mentioned books, and read the K&amp;R guide after reading Modern C</p> http://stackoverflow.com/questions/457129/where-to-start-self-learning-c-or-should-i-learn-i-learn-a-different-language/457159#457159 2 Answer by Erik Öjebo for Where to start (self-)learning C, or should I learn I learn a different language? Erik Öjebo 2009-01-19T10:23:20Z 2009-01-19T10:32:27Z <p>There is a university course at Indiana and Purdue Universities on C-programming. The course has video lectures that you can find at <a href="http://wally.cs.iupui.edu/n305/" rel="nofollow">here</a>.</p> <p>If you are also interested in looking at C++, there are a bunch of lectures at the <a href="http://www.wlap.org/" rel="nofollow">Web Lecture Archive Project</a> called "C++ for Particle Physicists". You find those lectures <a href="http://www.wlap.org/cern/lectures/tech/c/" rel="nofollow">here</a>. The lectures are held by Paul Kunz from Stanford University.</p> <p>For more C++ lectures, you can also check out <a href="http://www.youtube.com/user/reconnetworks" rel="nofollow">these lectures</a> from Reconnect Networks.</p> http://stackoverflow.com/questions/457129/where-to-start-self-learning-c-or-should-i-learn-i-learn-a-different-language/457161#457161 1 Answer by Yuval F for Where to start (self-)learning C, or should I learn I learn a different language? Yuval F 2009-01-19T10:24:01Z 2009-01-19T10:24:01Z <p>Read "The C Programming Language". Write short exercises (some are in the book). Use a compiler, such as <a href="http://gcc.gnu.org/" rel="nofollow">gcc</a>. </p> http://stackoverflow.com/questions/457129/where-to-start-self-learning-c-or-should-i-learn-i-learn-a-different-language/457165#457165 1 Answer by mouviciel for Where to start (self-)learning C, or should I learn I learn a different language? mouviciel 2009-01-19T10:28:00Z 2009-01-19T10:28:00Z <p><em>The C programming language</em> is a good starting point.</p> <p>Moreover, C itself is a good starting point for learning programming fundamentals: you can find C software and C developpers almost everywhere and many other languages take roots in C, such as C++, C#, Objective-C, ...</p> http://stackoverflow.com/questions/457129/where-to-start-self-learning-c-or-should-i-learn-i-learn-a-different-language/457407#457407 1 Answer by Ilya for Where to start (self-)learning C, or should I learn I learn a different language? Ilya 2009-01-19T12:10:39Z 2009-01-19T12:10:39Z <p>After reading the "The C Programming Language" like many suggested i would start looking into open source projects and learn from practical examples. There is a lot and it's not easy to find the right one, but learning from reading good code is the best alternative for learning from good coder :)<br /> If you have one around: pair programming or just mutual code reviews is the best way to learn. </p> http://stackoverflow.com/questions/457129/where-to-start-self-learning-c-or-should-i-learn-i-learn-a-different-language/457439#457439 1 Answer by Jorge Niedbalski R. for Where to start (self-)learning C, or should I learn I learn a different language? Jorge Niedbalski R. 2009-01-19T12:30:04Z 2009-01-19T14:21:03Z <p>1) The C programming Language K&amp;R 2) Read a lot of C source code. <a href="http://www.google.com/codesearch" rel="nofollow">Google code search</a></p> <p>That is all.</p> http://stackoverflow.com/questions/457129/where-to-start-self-learning-c-or-should-i-learn-i-learn-a-different-language/457793#457793 0 Answer by Steve for Where to start (self-)learning C, or should I learn I learn a different language? Steve 2009-01-19T14:42:47Z 2009-01-19T14:42:47Z <p>I believe your current approach is incorrect. C is currently a subset of C++ and does not have many of the concepts of a modern OO language. In most cases, it is relegated to legacy systems, and most new development that is not tied to legacy code is not written in C. Personally, I started with C++ (self taught), and moved to C#. Starting in C++ gives you all of the basics you need to understand object orientation and what's going on at a low level. However, for someone just starting, I would now recommend C# for the simple reason that its much easier to get off the ground and start running with it. Also, several of the concepts in c# have few analogs in the C world and make programming much more intuitive (LINQ, lambdas, etc). While memory management is important (and occasionally shows up in C#) it is painful to manage, and easier not to worry about as you're starting up. The sooner you can start an interesting project, the less likely you are to give up.</p> http://stackoverflow.com/questions/457129/where-to-start-self-learning-c-or-should-i-learn-i-learn-a-different-language/576041#576041 1 Answer by Jonas Kölker for Where to start (self-)learning C, or should I learn I learn a different language? Jonas Kölker 2009-02-22T23:14:47Z 2009-10-19T07:41:51Z <p>If you want some good source code to read, I can heartily suggest Simon Tatham's Puzzle Collection (<a href="http://www.chiark.greenend.org.uk/~sgtatham/puzzles/" rel="nofollow">http://www.chiark.greenend.org.uk/~sgtatham/puzzles/</a>, scroll down to the bottom for developer documentation). From it, you can learn:</p> <ul> <li>How to do object-oriented-like programming in C (each game is in a sense a class that implements the "game" interface).</li> <li>How to write portable C (hide all the unportable stuff behind your own interface).</li> <li>How to comment and document your code.</li> <li>How to do GUI programming in C.</li> <li>How to implement data structures in C (I recall the union find and 2-4 trees being done).</li> </ul> http://stackoverflow.com/questions/457129/where-to-start-self-learning-c-or-should-i-learn-i-learn-a-different-language/578661#578661 1 Answer by acidzombie24 for Where to start (self-)learning C, or should I learn I learn a different language? acidzombie24 2009-02-23T18:05:28Z 2009-02-23T18:05:28Z <p>Well, if you want to "start from level zero" i recommend learning assembly. yes assembly. I learned 6502, you can learn x86 if you like or arm or mips. Find a emulator or an interrupter and read some tutorials. You'll understand exactly how a CPU works and code will make much more sense (like why does getkeys not update until you do pollkeys and etc).</p> <p>After that i recommend C# because it isnt as nasty as c/c++ (i primarily use c++). You'll understand how a C# line could be represented in assembly. C# allows you to do more things you want to do unlike c and c++ (heres a list of things that we can do in c++ that we will be able to do in the next standard <a href="http://en.wikipedia.org/wiki/C%2B%2B0x" rel="nofollow">http://en.wikipedia.org/wiki/C%2B%2B0x</a>, C# has a few of these).</p> <p>If you want to learn a lot you can try learning the language i recommend here <a href="http://stackoverflow.com/questions/498964/the-difficulty-in-learning-new-languages-by-yourself/578618#578618">http://stackoverflow.com/questions/498964/the-difficulty-in-learning-new-languages-by-yourself/578618#578618</a> which i think is a good idea after assembly.</p> http://stackoverflow.com/questions/457129/where-to-start-self-learning-c-or-should-i-learn-i-learn-a-different-language/1587505#1587505 0 Answer by Grzegorz Gierlik for Where to start (self-)learning C, or should I learn I learn a different language? Grzegorz Gierlik 2009-10-19T08:22:03Z 2009-10-19T08:22:03Z <p><strong>About learning C</strong></p> <p>If you really want to learn C, <a href="http://en.wikipedia.org/wiki/The%5FC%5FProgramming%5FLanguage%5F%28book)" rel="nofollow">Kernighan and Ritchie "The C Programming Language" book</a> is good start.</p> <p>However nowadays, in my opinion, learning C is just mind exercise -- you can learn a lot important details like, for example:</p> <ol> <li>Difference between equal operator (<code>==</code>) and assignment instruction (<code>=</code>),</li> <li>Expression can have value (i.e. <code>a = 1</code> has value 1),</li> <li>Pointers arithmetic,</li> <li>Direct memory operations (i.e. <code>memset()</code>, <code>memcpy()</code>).</li> </ol> <p>These things are interesting for developers, but most of them is not in use in today mainstream application development (except two first points above).</p> <p>However if you try to take part in some computer since competitions, C language can be useful.</p> <p><strong>My recommendation</strong></p> <p>I would learn C# because it's modern, well designed (in my opinion) object oriented programming language with good, free of charge IDE -- <a href="http://www.microsoft.com/exPress/" rel="nofollow">Visual Studio Express Edition</a>, good support (wide community, a lot of source code to study, a lot of tutorials and examples). With C# you can write console application, desktop application or Web Apps, which makes easy to learn by solving wide range of real problems.</p> <p>Also, on .NET platform there are some other interesting choices -- <a href="http://www.codeplex.com/wikipage?ProjectName=IronPython" rel="nofollow">IronPyton</a> or functional <a href="http://research.microsoft.com/en-us/um/cambridge/projects/fsharp/" rel="nofollow">F#</a>.</p> http://stackoverflow.com/questions/457129/where-to-start-self-learning-c-or-should-i-learn-i-learn-a-different-language/1587549#1587549 0 Answer by Billy for Where to start (self-)learning C, or should I learn I learn a different language? Billy 2009-10-19T08:33:47Z 2009-10-19T08:33:47Z <p>1) <a href="http://cm.bell-labs.com/cm/cs/cbook/" rel="nofollow">Kernighan &amp; Ritchie</a></p> <p>2) <a href="http://rads.stackoverflow.com/amzn/click/1556155514" rel="nofollow">Writing Solid Code</a></p> <p>3) <a href="http://cc2e.com/" rel="nofollow">Code Complete</a></p>