Computer Science, asked by ak9701849, 11 months ago

How is a character array different from a string array?

Answers

Answered by sahil043
1
Strings are similar to arrays with just a few differences. Usually, the array size is fixed, while strings can have a variable number of elements. Arrayscan contain any data type (char short int even other arrays) while strings are usually ASCII characters terminated with a NULL (0) character.
Similar questions