arr itself but also arr[0], arr[1]....arr[9] are all without addresses themselves.
arr
is simply the base address of the array. Individual elements are located by adding offsets to that address. The name of the array isn't useful, except for debugging, once the code is compiled.