Maybe the difference is that you were teaching while I was learning

I used the wrong word. I should have said I found teaching a more modern language first more effective rather than necessarily easier for the student (although I think it's often that too :-)

Actually - it's not even "more modern" - it's higher level. I'd much prefer to teach Lisp over C as a first language too.

C is a sneaky language is some ways, but learning it first only makes it worse in my experience.

Learning C as a first language is painful since it can punish mistakes in such an arbitrary way. When something as simple as an off-by-one error can cause no problems on one run, a segfault on another, and a corrupt result on a third it can be hellishly difficult for a newbie to get a handle on what the heck is going on. Especially when adding print statements can make the problem go away.

Coming to C as a second or third language means that students can separate out the general programming concepts from the C-ness. It also means that you can focus more quickly on more challenging projects that show the advantages of C as a language, and introduce them to tools that can make the development process less painful.


In reply to Re^6: Popularity of Perl vs. availability of Perl developers by adrianh
in thread Popularity of Perl vs. availability of Perl developers by aufflick

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.