5+"abhishekdas"
equivalently &"abhishekdas"[5], which is the address of the sixth element of the array.
"abhishekdas"- string literal: its type is the type of the array. Like every array object, when it is evaluated in an expression, it is converted to a pointer type. So, 5+"abhishekdas"a simple pointer arithmetic.
source
share