Comment on C2 Lang design (2014) [pdf]parentComments−_kst_11yThis is more a problem of C's strings being naked pointers to chars.A C string is a sequence of characters, not a pointer. C strings are manipulated using `char*` pointers.
Comments
A C string is a sequence of characters, not a pointer. C strings are manipulated using `char*` pointers.