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?

User TylarBen
by
6.1k 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.
User Gion Rubitschung
by
6.1k points