Content deleted Content added
Removed editorializing. Problems in design of some 3rd party libraries not germane. Criticisms of Standard Library are covered by specific language criticisms and/or need much more NPOV exposition. |
|||
Line 16:
C does not have some features that are available in some other programming languages:
* No assignment of arrays or strings (copying can be done via standard functions; assignment of objects having <code>struct</code> or <code>union</code> type is supported)
* No [[Garbage collection (computer science)|automatic garbage collection]] -- although C would be great for writing the garbage collector for a high-level language's interpreter
* No requirement for [[bounds checking]] of arrays
* No [[array programming|operations on whole arrays]]
|