C Arrays and Memory Quiz

 
 
Question 1 of 10

What is the difference between the following two chunks of code?
char arr1[] = {'a', 'b', 'c'};
and
char *arr2 = "abc";