printf("%d\n",*s++);//++ has more priority than *...s would have to ++ 1st & then it would have to get value at that address of s....but bcz it is post increment,,,,it will get value 1st ..complete its operation by printing that value & then increments address of s....so again when i printed ..value of s become the next value value than previous..//
printf("%d\n",*s);//will print value of incremented address//