In C programming, the "&" operator is used to get the address of a variable. For example, "&a" will give the address of variable "a". On the other hand, the "*" operator is used as a pointer to a variable. For instance, "*a" is a pointer to the variable "a".