DEV Community

Discussion on: To C/C++ Or Not to C/C++

Collapse
 
daedtech profile image
Erik Dietrich

I'm honestly just kinda tickled that, all these years later, they're still teaching C at colleges.

Collapse
 
mburszley profile image
Maximilian Burszley • Edited

How many students actually use that knowledge learned outside of uni is probably a very small sliver, however. There's not a lot of need for C/++ for most things people are building nowadays (see: CRUD business apps, SaaS web apps, etc.).

I wish Rust had existed when I started learning development instead of starting with C because I appreciate the memory model there way more and its compiler messages are amazing.

Thread Thread
 
cappe987 profile image
Casper • Edited

"How many students will actually use X after university" can be applied to any course. The point isn't to teach a useful technology, but rather to teach the fundamentals of how programming languages and computers work. I know there are several more parts needed to cover it all, but learning C is a very good place to start. Even though I hate C and will hopefully never use it professionally, the things it has taught me will always be there in the back of my head when programming.

I can't comment on Rust as I've never used it.

Thread Thread
 
codemouse92 profile image
Jason C. McDonald

This. So much this.