How many bytes in a memory address?

You can use the sizeof function to determine that answer for yourself.

Serial.print("int size: ");
Serial.println(sizeof(int));

Serial.print("int * size: ");
Serial.println(sizeof(int *));

Change int to byte, float, etc. to see the various type sizes.