Higher Lib abstraction for C?

Are there higher abstraction libraries for C that help to easily do basic things without worrying about memory / pointers, etc.

Ex: Python provides a much larger abstraction than C. It can be a concatenation of strings, arrays, etc. We just got any lib in C that does this job?

+5
source share
2 answers

There are only a few goals in C. programming. The main ones that come to mind are:

  • You need a language with the concept of storage duration, through which you can write algorithms of limited space or in place that use the received memory, and thus have absolutely no glitches.

  • C-, , . , , ​​ .

, , , C. , , C / C, .

+6

, - , C , .

, : C, , , ++? , , ++ C , C. , - C, .

, ++. , C, - ++, . , , , , . , , , .

+4

All Articles