C or C++ first?

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Karl Heinz Buchegger

    #16
    Re: C or C++ first?



    Leicaddict wrote:[color=blue]
    >
    > EnglishTeacher@ ModernEnglish.c om (English Teacher) wrote in message news:<b06436f6. 0310202227.43d0 4db4@posting.go ogle.com>...[color=green]
    > > Should I learn C first? Or can I go straight to C++ or C#?
    > >
    > > Thanks in advance.[/color]
    >
    > C is dead. C++ is dying. C# is the future.[/color]

    Dream on.

    --
    Karl Heinz Buchegger
    kbuchegg@gascad .at

    Comment

    • Irrwahn Grausewitz

      #17
      Re: C or C++ first?

      Leicaaddict@uwp hotographer.net (Leicaddict) wrote:
      [color=blue]
      >EnglishTeacher @ModernEnglish. com (English Teacher) wrote in message news:<b06436f6. 0310202227.43d0 4db4@posting.go ogle.com>...[color=green]
      >> Should I learn C first? Or can I go straight to C++ or C#?
      >>
      >> Thanks in advance.[/color]
      >
      >C is dead. C++ is dying. C# is the future.[/color]

      Leica is dead. Photography is dying. Camera obscura is the future.
      --
      Irrwahn
      (irrwahn33@free net.de)

      Comment

      • Joe Thibodeau

        #18
        Re: C or C++ first?

        C is far from dead ... it is the backbone of just about every computing
        system out there. Every modern language has been influenced by C and as we
        speak C is the defacto standard for small embedded systems. Try cramming C#
        into a microcontroller domain space. Larger embedded systems use C++
        extensively. So the next time you pick up your shaver or get an ultrasound
        or turn on your car or listen to your stereo ... think C.

        My advice is to learn C first since it is the backbone for every modern
        programming language in the last 10 years.

        "Leicaddict " <Leicaaddict@uw photographer.ne t> wrote in message
        news:71fc6b93.0 310270154.c88ed 7a@posting.goog le.com...[color=blue]
        > EnglishTeacher@ ModernEnglish.c om (English Teacher) wrote in message[/color]
        news:<b06436f6. 0310202227.43d0 4db4@posting.go ogle.com>...[color=blue][color=green]
        > > Should I learn C first? Or can I go straight to C++ or C#?
        > >
        > > Thanks in advance.[/color]
        >
        > C is dead. C++ is dying. C# is the future.[/color]


        Comment

        • Joe Thibodeau

          #19
          Re: C or C++ first?

          Pinhole lives!!! Hey where are those glass plates!

          "Irrwahn Grausewitz" <irrwahn33@free net.de> wrote in message
          news:eftppv07d4 k88sbo33c8312as enaeqfiqi@4ax.c om...[color=blue]
          > Leicaaddict@uwp hotographer.net (Leicaddict) wrote:
          >[color=green]
          > >EnglishTeacher @ModernEnglish. com (English Teacher) wrote in message[/color][/color]
          news:<b06436f6. 0310202227.43d0 4db4@posting.go ogle.com>...[color=blue][color=green][color=darkred]
          > >> Should I learn C first? Or can I go straight to C++ or C#?
          > >>
          > >> Thanks in advance.[/color]
          > >
          > >C is dead. C++ is dying. C# is the future.[/color]
          >
          > Leica is dead. Photography is dying. Camera obscura is the future.
          > --
          > Irrwahn
          > (irrwahn33@free net.de)[/color]


          Comment

          • Kevin Goodsell

            #20
            Re: C or C++ first?

            Leicaddict wrote:
            [color=blue]
            > EnglishTeacher@ ModernEnglish.c om (English Teacher) wrote in message news:<b06436f6. 0310202227.43d0 4db4@posting.go ogle.com>...
            >[color=green]
            >>Should I learn C first? Or can I go straight to C++ or C#?
            >>
            >>Thanks in advance.[/color]
            >
            >
            > C is dead. C++ is dying. C# is the future.[/color]

            This troll looks very similar to the original troll to which it is
            replying. I'd say this is the OP trying again to start a flame war for
            the purpose of flooding the groups where this is clearly not-topical.
            Please ignore it.

            -Kevin
            --
            My email address is valid, but changes periodically.
            To contact me please use the address from a recent posting.

            Comment

            • Kevin Goodsell

              #21
              Re: C or C++ first?

              Joe Thibodeau wrote:
              [color=blue]
              > C is far from dead ...[/color]

              Please don't top-post. If it's accepted on whatever group you are
              replying from then fine, but when cross-posting please adopt the Usenet
              standard formatting.

              -Kevin
              --
              My email address is valid, but changes periodically.
              To contact me please use the address from a recent posting.

              Comment

              • Roger Halstead

                #22
                Re: C or C++ first?

                On Mon, 27 Oct 2003 07:49:57 -0800, "Joe Thibodeau"
                <jetcode@allvan tage.com> wrote:
                [color=blue]
                >C is far from dead ... it is the backbone of just about every computing
                >system out there. Every modern language has been influenced by C and as we
                >speak C is the defacto standard for small embedded systems. Try cramming C#
                >into a microcontroller domain space. Larger embedded systems use C++
                >extensively. So the next time you pick up your shaver or get an ultrasound
                >or turn on your car or listen to your stereo ... think C.[/color]

                Even C++ is C. It's just C with a *lot* or added routines...writ ten
                in C. Nor does C require all the DLLs of C++. Compiled C is so much
                more compact than a stand alone C++ it's difficult to compare them.
                Many refer to the visual languages as producing "bloat code"
                You compile C, it gets even smaller (depending on how many libraries
                you use). Compile C++ into a stand alone program and it becomes huge.
                I compiled roughly 40 K of source for C++ and it became nearly 10
                megs.

                The most difficult part of C for almost any programmer is learning
                pointers and dynamic memory allocation. That and depending on how
                strong you have the type checking set it may let you do virtually
                anything to anything with some rather strange and sometimes disastrous
                results. But, it is important to learn how to use pointers, linked
                lists, double linked lists and even circular linked lists. It's
                probably easier to learn these concepts in either Pascal, or Delphi
                which is far from dead as well...although it is suffering.
                [color=blue]
                >
                >My advice is to learn C first since it is the backbone for every modern
                >programming language in the last 10 years.[/color]

                Straight C is a relatively low level language, but far higher than
                assembler. It's cryptic to read, but that same primitive level gives
                it the power to do almost anything. Learn C and C++ will be a snap.
                Just think of C++ as C with a lot of added routines already written
                that give it the ability to work with object oriented apps. If you
                already know C then you don't have to suffer with the basics while
                trying to understand inheritances. <:-))

                Actually VB is powerful and easy to learn, but not as powerful as C++.
                Yet it will do most things an individual would want. OTOH it's
                probably not going to be much help when looking for a job.
                VB dot net is basically (no pun intended) VB with the dot net
                capabilities added.

                Yet, if a programmer is looking for a job the main ingredient is
                having a degree, plus knowing the languages that particular firm uses.
                With the current state of the industry, those doing the hiring can now
                afford to be really picky.

                You will find there are many obscure languages out there in use by
                specific firms. Hence it's desirable to know "top down and bottom up"
                *structured* programming. Be able to flow chart a program logically
                (nasischneiderm an? Never could spell it), and write pseudocode. Know
                debugging inside out as you'll need it. Another important virtue is
                knowing how to document your source code both internally and
                externally in a manner than any one coming behind can understand.
                Don't write documentation in such a manner that it takes an
                experienced programmer to even get an idea as to what you are talking
                about.

                Roger Halstead (K8RI EN73 & ARRL Life Member)
                Официальный сайт Вавада Казино (Vavada Casino) 🚀 Вход с бонусом за регистрацию 🚩 Vavada Casino зеркало рабочее на сегодня

                N833R World's oldest Debonair? (S# CD-2)[color=blue]
                >
                >"Leicaddict " <Leicaaddict@uw photographer.ne t> wrote in message
                >news:71fc6b93. 0310270154.c88e d7a@posting.goo gle.com...[color=green]
                >> EnglishTeacher@ ModernEnglish.c om (English Teacher) wrote in message[/color]
                >news:<b06436f6 .0310202227.43d 04db4@posting.g oogle.com>...[color=green][color=darkred]
                >> > Should I learn C first? Or can I go straight to C++ or C#?
                >> >
                >> > Thanks in advance.[/color]
                >>
                >> C is dead. C++ is dying. C# is the future.[/color]
                >[/color]

                Comment

                • Joe Thibodeau

                  #23
                  Re: C or C++ first?

                  Speaking of trolls ...

                  "Kevin Goodsell" <usenet1.spamfr ee.fusion@never box.com> wrote in message
                  news:gOdnb.4209 $RQ1.2054@newsr ead3.news.pas.e arthlink.net...[color=blue]
                  > Joe Thibodeau wrote:
                  >[color=green]
                  > > C is far from dead ...[/color]
                  >
                  > Please don't top-post. If it's accepted on whatever group you are
                  > replying from then fine, but when cross-posting please adopt the Usenet
                  > standard formatting.
                  >
                  > -Kevin
                  > --
                  > My email address is valid, but changes periodically.
                  > To contact me please use the address from a recent posting.
                  >[/color]


                  Comment

                  • Joona I Palaste

                    #24
                    Re: C or C++ first?

                    Joe Thibodeau <jetcode@allvan tage.com> scribbled the following
                    on comp.lang.c:[color=blue]
                    > Speaking of trolls ...[/color]

                    Are you out of your freaking mind?
                    *PLONK*
                    [color=blue]
                    > "Kevin Goodsell" <usenet1.spamfr ee.fusion@never box.com> wrote in message
                    > news:gOdnb.4209 $RQ1.2054@newsr ead3.news.pas.e arthlink.net...[color=green]
                    >> Joe Thibodeau wrote:
                    >>[color=darkred]
                    >> > C is far from dead ...[/color]
                    >>
                    >> Please don't top-post. If it's accepted on whatever group you are
                    >> replying from then fine, but when cross-posting please adopt the Usenet
                    >> standard formatting.[/color][/color]

                    --
                    /-- Joona Palaste (palaste@cc.hel sinki.fi) ------------- Finland --------\
                    \-- http://www.helsinki.fi/~palaste --------------------- rules! --------/
                    "To err is human. To really louse things up takes a computer."
                    - Anon

                    Comment

                    • Bob Sull

                      #25
                      Re: C or C++ first?

                      Joe Thibodeau wrote:[color=blue]
                      > C is far from dead ... it is the backbone of just about every computing
                      > system out there. Every modern language has been influenced by C and as we
                      > speak C is the defacto standard for small embedded systems. Try cramming C#
                      > into a microcontroller domain space. Larger embedded systems use C++
                      > extensively. So the next time you pick up your shaver or get an ultrasound
                      > or turn on your car or listen to your stereo ... think C.
                      >
                      > My advice is to learn C first since it is the backbone for every modern
                      > programming language in the last 10 years.
                      >
                      > "Leicaddict " <Leicaaddict@uw photographer.ne t> wrote in message
                      > news:71fc6b93.0 310270154.c88ed 7a@posting.goog le.com...
                      >[color=green]
                      >>EnglishTeache r@ModernEnglish .com (English Teacher) wrote in message[/color]
                      >
                      > news:<b06436f6. 0310202227.43d0 4db4@posting.go ogle.com>...
                      >[color=green][color=darkred]
                      >>>Should I learn C first? Or can I go straight to C++ or C#?
                      >>>
                      >>>Thanks in advance.[/color]
                      >>
                      >>C is dead. C++ is dying. C# is the future.[/color][/color]

                      My Canon A2e replaced my old OM-1 system which was getting long in the
                      tooth. Now buying long lenses is not a waste of money.

                      Bob


                      Comment

                      • Dan McLeran

                        #26
                        Re: C or C++ first?

                        > Many refer to the visual languages as producing "bloat code"

                        I don't think that C++ is a 'visual language', whatever that means.

                        Comment

                        • Paul M. Parks

                          #27
                          Re: C or C++ first?

                          Leicaaddict@uwp hotographer.net (Leicaddict) threw a soggy newspaper
                          against the wall, and here's what stuck:
                          [color=blue]
                          > EnglishTeacher@ ModernEnglish.c om (English Teacher) wrote in message
                          > news:<b06436f6. 0310202227.43d0 4db4@posting.go ogle.com>...[color=green]
                          >> Should I learn C first? Or can I go straight to C++ or C#?
                          >>
                          >> Thanks in advance.[/color]
                          >
                          > C is dead. C++ is dying. C# is the future.[/color]

                          At least put bait on the hook before you cast.

                          PMP

                          Comment

                          Working...