Q:

A pointer holds the address of another object. We get the address of an object by usin the address-of operator (the & operator)

0

A pointer holds the address of another object. We get the address of an object by using the address-of operator (the & operator):

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

int ival = 42;
int *p = &ival; // p holds the address of ival; p is a pointer to ival

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Similar questions


need a help?


find thousands of online teachers now