for example i have a void pointer :
void *pt;
int k=80;
pt=&k;
now i want to incement it by one byte ,is it just enough to use (++(char) pt) or I should use (void)(++(char*)pt)
by this asssumption that i wnat to cast it again to int ,char ,... later.