Many HN readers might think this is joke question, but is serious question. "C Standard Library sucks" is almost a gnrd (geeky nerd) meme. But I don't get this joke!<p>I am student/hobbyist, and I like to study programming languages. C is amazing. Also are some other languages.<p>Many times, when I study about !C languages, I see them say things about how XYZlang has much better standard lib than C, and they assume everybody knows how bad is C standard lib, but they never provide any specific references. (Please don't reply rtfd, tyvm)<p>Maybe some HN people can post some comments about or links to some references, comparisons, or articles about what sucks in C standard lib.<p>Also please if you know about such please say some alternatives to C standard lib, not in other language, but for use in C.<p>Thank you HN people!
C's Standard Library doesn't suck, and, in all my decades of programming, I did not hear that statement at all.<p>The standard library just doesn't give you much. Things have gotten better with C99 and C11, but there are many things that every day programming depends on but are not covered by the C standard library. Simplest example: Traversing the filesystem. You can easily come up with other examples.