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?

Respuesta :

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.
ACCESS MORE