0
Data types
what is the difference between String type and array of char.
1 Resposta
+ 2
the way that they are stored in memory is different. A string will be stored as a long stream of ascii code and individual elements can not be accessed. Char however are each stored as individual memory locations and can be accessed individually