Let us C Solution | Chapter 16 Handling Multiple Strings | Exercise A
Duration: 5:12 Min | Sep 29, 2023
How many bytes in memory would be occupied by the following array of pointers to strings? How many bytes would be required to store the same strings, if they are stored in a two-dimensional character array?
char *mess[ ] = {
"Hammer and tongs",
"Tooth and nail",
"Spit and polish",
"You and C"
} ;