Answers for "meaning of &variable c"

C
0

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
*/
Posted by: Guest on October-28-2020

Code answers related to "C"

Browse Popular Code Answers by Language