Criticism of the C programming language: Difference between revisions

Content deleted Content added
Economy of expression: deleted in-text commentary from reference
Line 84:
 
==Economy of expression==
One occasional criticism of C is that it can be concise to the point of being cryptic. A classic example that appears in K&R<ref>Brian W. Kernighan and Dennis M. Ritchie: ''The C Programming Language,'' 2<sup>nd</sup> ed., p. 106. Note that this function assumes that there is sufficient space available at the destination.</ref> is the following function to copy the contents of string <code>t</code> to string <code>s</code>:
 
void strcpy(char *s, char *t)