int a[10]={3,45,6,78,89,334,4,77,54,60};
int *p=a;
what will *p++ do ?
as ++ has more priority than * therefore ++ will be executed fisrt ?
but its postincrement so it will happen after change of line or statement.
so will it increment the pointer or increment the value hold by pointer ?
*++p will increment the pointer and then derefrence it !! right ?
*(p++) will do the same ?
++(*p) will increment value !!
now can i achieve increment in both value and pointer in one line ?