The declaration 'int px' means px is a pointer variable that can hold the address of an integer quantity. The asterisk () indicates that px is a pointer, and 'int' specifies that it points to an integer type. Pointer variables store memory addresses, not the actual values.