c & meansing code example
Example: meaning of &variable c
int main()
{
int a = 3;
func(&a)
}
/*
the & operand, used with the a variable, gives the memory address of that variable
*/
int main()
{
int a = 3;
func(&a)
}
/*
the & operand, used with the a variable, gives the memory address of that variable
*/