Earlier quoted context omitted.
C has its unique advantages that make some of us prefer it to C++ or Rust or other languages. But it also has some issues that can be addressed. IMHO it should evolve, but very slowly. C89 is certainly a much worse language than C99 and I think most of the changes in C23 were good. It is fine to not use them for the next two decades, but I think it is good that most projects moved on from C89 so it is also good that…
I know this a four day old comment, but based on your post history I think you are probably the best person to ask to be more specific. So, you start out stating “C has its unique advantages”, an assertion I agree with but more for ‘vibes’ than because I can articulate the actual advantages (other than average compilation times). If you see this I would love to hear your list of C’s unique advantages.
- long-term stability: the code I wrote two decades ago is still valuable to me
- short (!) compilation times: this is a huge productivity boost
- the language is very explicit: one can see and understand what is going on
- mature tooling: good compilers and many other tools
- simplicity and elegance: the language is small and not much I need to remember
- portability: supported on many different systems
- performance: C code can be very performance and usually it is without effort
- lean: there is no bloat anywhere
- interoperability: it can interoperate with everything
- no lock-in: it does not lock you into specific frameworks or ways to do things
- maintained using an open and (relatively) fair process: not controlled by specific companies
- what needs to be done, can be done: there are never showstoppers