8
aviophile
186d

Greatest language of all times is still C. It stood against the test of time. Any new language including Rust can hope to ba barely performant than C with too much overload.(I know most cpp abstractions if more efficient handwritten C equivalent but still).

Language is small, simple, elegant.

Comments
  • 2
    Did you hear about dem web developers?
  • 7
    currently learning it. Gets me to think much more about how things actually work.
  • 3
    While the language itself is relatively simple, it’s not simple in terms of avoiding bugs and preventing security vulnerabilities like buffer overflows and memory management related issues.

    Performance is not as important in most cases.

    Safety on the other hand is extremely important.

    The performance advantage of C is minimal, compared to languages like C++, Rust or Swift.
    The safety disadvantage is gigantic (compared to Rust and Swift).

    The developer experience of C and C++ sucks as well.

    C is very influential but far from the best language today.
  • 5
    @ostream nothing like consuming notifications from a degenerate without reading them at all 😂. Loser finds all sorts of images to make a point, only to be ignored .
  • 1
    @Lensflare safety is a valid concern but none of those upgrades could gain traction in os level, where safety matters the most. people would still to write more lines of code to make C safer instead of using Rust. Afaik, there is one Rust os attempt which doesn’t go anywhere. As llng as software is developed by humans, complexity of languages is repulsive.
  • 2
    @ostream didn’t read. Get a life degenerate
  • 2
    @ostream dude litteraly 9yo
  • 0
    @ostream what an amazing picture 😁🤣
  • 0
    @ostream ugh, waited two minutes!
  • 0
    Every programmer, even web devs, should at least practice some C in order for them to know a thing or two about how computers actually work, so they can avoid writing terribly inefficient abominations which save a line or two of code.
  • 2
    What fucking asshole spams long images to pay back for an insult?
    ostream.
  • 1
    Has C solved the lack of local reasoning about the immutability of pointers yet, or are y'all still reloading every value of matching type whenever you write a value to a pointer just in case they alias?
  • 1
    I'm not even gonna get started on how most C libraries take function pointers and void* for event handling even if the arguments are statically known at compile time so C usually uses a lot more virtual function calls than C++ or Rust.
  • 2
    It's complex in all the wrong ways. If the dev could talk a little more about the expected invariants of the code, the optimizer could be simpler and the generated code even faster, if the preprocessor was a little more elaborate user-defined abstractions could be faster and more ergonomic at the same time, and if namespaces were available and macros were hygienic they would be vastly safer and thus more popular which would mean that runtime polymorphism would hardly ever have to be used.
  • 2
    Programmers know what computers are good at. The optimizer should ideally solve unimportant and low level problems that are only relevant in bulk like load promotion and register allocation. Every optimization the programmer actively thinks about could be expressible in the code, saving vast amounts of analysis.
  • 0
    @ostream can you please remove your large image comments so that uninvolved users don’t need to suffer when they want to read the comments that have nothing to do with the topics that were the reasons for you to post the spam?
  • 0
    You probably have cut your own dick and call yourself a beautiful woman suddenly, degenerate.
Add Comment