📜  &variable的含义-C编程语言代码示例

📅  最后修改于: 2022-03-11 15:04:37.498000             🧑  作者: Mango

代码示例1
int main()
{
    int a = 3;
    func(&a)
}
/*
the & operand, used with the a variable, gives the memory address of that variable
*/