I am getting \"lvalue required as increment operand\" while doing *++a. Where I am going wrong? I thought it will be equivalent to *(a+1). This beh
*++a
*(a+1)
Arrays are not pointers. a is an array; you cannot increment an array.
a