meaning of &variable c

C
int main()
{
    int a = 3;
    func(&a)
}
/*
the & operand, used with the a variable, gives the memory address of that variable
*/
Source

Also in C: