Re: Re: US White House urges devs to dump C and C++
By: esc to Nightfox on Thu Feb 29 2024 05:21 am
https://www.infoworld.com/article/3713203/white-house-urges-developers-to
-
c-and-c.html
As someone that's stumbled into the pitfalls of neglecting appropriate memory management in my own c code, I gotta say this feels like a good recommendation.
I feel like switching entirely to a different programming language could be a bit excessive.. Though it can be easy to forget/neglect that sometimes.
If you're using C++, modern C++ has some things that can help (smart pointers such as shared_ptr, unique_ptr, etc)..
Nightfox