void main(){
char *const p="Hello";
p++; // causes error object p non modifiable
}
void main(){
char A[10]="ANSHU";
A++; // here causes lvalue problem
}
So, my question is, what is difference between these two programs and next question is that is array's declaration like this
int *const A;