Array of strings VS Array of pointers of string in C Programming

preview_player
Показать описание
Difference between array of strings and array of pointers of string in C Programming, this is one of the important question in c programming interviews. And if you are beginner then you expect it more often.
Let's discuss this in details and uncover hidden points about this topic.

JOIN ME

#cprogramming #interview #2darray
Рекомендации по теме
Комментарии
Автор

In the second representation it is impossible to modify individual characters (for instance arr[0][0] = 't") (seg fault due to strings stored in read only memory)

soulimanemammar