Finally I have a valid reason to learn about memory management. It was also hella weird when encountering it.

    • ulterno@programming.dev
      link
      fedilink
      English
      arrow-up
      1
      ·
      2 months ago

      That’s a nice recommendation.

      For a beginner without experience in using libraries, the additional requirements in Rust would feel unnecessary and frustrating.
      If you take up Rust after learning programming using C (which won’t require all that extra stuff and let you learn the basics easily), that would make it easier for you to appreciate the results of the extra work it makes you do.

    • N.E.P.T.R@lemmy.blahaj.zone
      link
      fedilink
      English
      arrow-up
      1
      ·
      2 months ago

      Probably a good idea. I decided to learn Rust after using Python for a couple years. I took a semester of C++ but barely remember anything. Maybe I should write a project in C and rewrite later in Rust. I personally only learn when I get inspiration to make a program, which means I learn on the spot. I don’t think it is the best way to do things (if I knew the language better I may make better decisions), but it is the only way I can motivate myself to learn.

    • 6nk06@sh.itjust.works
      link
      fedilink
      arrow-up
      0
      arrow-down
      1
      ·
      edit-2
      2 months ago

      C is useless nowadays (and has been for at least 20 years). Either learn Rust or C++.

      • da_cow (she/her)@feddit.orgOP
        link
        fedilink
        arrow-up
        0
        ·
        2 months ago

        The reason I got recommended to learn C first is so that you are getting used to handling memory by yourself. Then you switch to rust and since you are used to handling memory your rust code is usually better quality.

        Another reason I want to learn C is because I regularly have to work with Arduinos.

        • anton@lemmy.blahaj.zone
          link
          fedilink
          arrow-up
          0
          ·
          2 months ago

          I can’t comment whether learning C first improves your rust, but it certainly makes you appreciate what the rust compiler does.
          Also learning rust improved my C.

          • Decq@lemmy.world
            link
            fedilink
            arrow-up
            1
            ·
            2 months ago

            I think it’s a fair strategy. If they know what happens if you do it wrong people suddenly complain less about rust’s borrow checker. Whereas people who are only used to garbage collected language don’t usually have the slightest clue why it works the way it does.