I am reading the chapter on arrays and pointers in Kernighan and Richie\'s The C Programming Language.
They give the example:
/* strlen: return
"hello, world"
is an array of char (type is char[13]). The value of an array of char in an expression is a pointer to char. The pointer points to the first element of the array (i.e., the value of "hello, world" is &"hello, world"[0]).
char
char[13]
&"hello, world"[0]