What is Address?
A blockchain address is a unique identifier derived from a public key that represents a destination for transactions — the 'account number' of the blockchain world.
WHY IT MATTERS
On Ethereum, an address is a 42-character hex string (starting with 0x) derived from the public key's Keccak-256 hash. On Bitcoin, addresses use different formats for different transaction types.
Address types on Ethereum: Externally Owned Accounts (EOAs) controlled by private keys, and Contract Accounts controlled by smart contract code. Both identified by addresses but behave differently.
Sending funds to a wrong address usually means permanent loss. Checksums (EIP-55) and address books help prevent errors, but responsibility lies with the sender.