string vs array of chars

True/false question

Does the following two statements the same:
char arr[] = {'a','b'};
char arr[] = "ab";

False