In C programming, the ampersand (&) operator is used to get the address of a variable. It’s also called the “address-of” operator. For example, if you have a variable x, &x will return the memory address where x is stored. This is frequently used when dealing with pointers and sending parameters by reference in function calls.