Pointer arithmetic is performed on the size of the static type[*] of the pointer, so it will effectively add sizeof *ptr. Alignment of the members will be accounted for in the size of the object, as the alignment of the type (padding at the end of the object).
struct test {
int a;
char b;
};
The size of test will not be 5 (assuming 32 bit ints), if the type is 4-byte aligned.
[*] Note that in C++ you can assign the address of a derived object to a base class, but pointer arithmetic will operate on the type of the pointer, not the actual objects:
struct base { int x; };
struct derived : base { int y; };
int main() {
base * p = new derived[10];
base * q = p+1; // this does not point to the second `derived`!!!
}