asked 49.0k views
5 votes
Which statement is false? arrays may contain pointers. each entry in an array of strings is actually a pointer to the first character of a string. in c, a string is essentially a pointer to its first character. the size of an array of strings is the sum of the lengths of the strings?

asked
User TylarBen
by
8.4k points

1 Answer

2 votes
each entry in an array of strings is actually a pointer to the first character of a string

Each indice in an array of strings (which are actually each actually an array of char) is actually a pointer to the first (0th) char of a string.
answered
User Gion Rubitschung
by
8.0k points