this post was submitted on 01 Dec 2024
30 points (100.0% liked)

Programming

17672 readers
54 users here now

Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!

Cross posting is strongly encouraged in the instance. If you feel your post or another person's post makes sense in another community cross post into it.

Hope you enjoy the instance!

Rules

Rules

  • Follow the programming.dev instance rules
  • Keep content related to programming in some way
  • If you're posting long videos try to add in some form of tldr for those who don't want to watch videos

Wormhole

Follow the wormhole through a path of communities !webdev@programming.dev



founded 2 years ago
MODERATORS
 

Folks, I need a hobby. I'm a C programmer who has lost his passion for programming, it seems. I've decided to try to spark my passion again by going back to the basics, perhaps by creating a programming tutorial Wikibook, for modern applications.

The trouble is, I cannot decide if I should make C or Rust my programming language of choice.

I use C all the time, and have barely any experience in Rust.

Do I go with ol' reliable and risk being outdated in a few years, or go with the new language and risk being too niche and unpopular?

you are viewing a single comment's thread
view the rest of the comments
[–] CameronDev@programming.dev 6 points 3 weeks ago

Rust is definitely not new and niche anymore, its the most popular language in the StackOverflow surveys.

A C book feels dated at this point, there are very strong recommendations that C is to be phased out in favor of memory safe languages. But people have been signalling the death of C for decades, so it probably has a few more years left.

A good C book on how to write memory safe C would be useful. Its been tried many times, but newcomers to C still seem to struggle with allocation and freeing, and thread safety.