These statements produce different results because of the way in which the operators bind. In particular, ++ have the same precedence as *, but the operators bind right-to-left (see this table for more info). Thus
++*ptr
is parsed as
++(*ptr)
meaning "increment the value pointed at by ptr," while
*ptr++
means
*(ptr++)
which means "increment ptr to go to the element after the one it points at, then dereference its old value" (since postfix ++ hands back the value the pointer used to have).
In the context you described, you probably want to write ++*ptr, which would increment x indirectly through ptr. Writing *ptr++ would be dangerous because it would march ptr forward past x, and since x isn't part of an array the pointer would be dangling somewhere in memory (perhaps on top of itself!)
Hope this helps!