adplus-dvertising
frame-decoration

Question

What do you call STAR * and Ampersand & in a c program context?
int a=10, *p;
p = &a;
printf("%d %d", a, *p);

a.

* = ADDRESS OF operator, & = VALUE AT operator

b.

* = ADDRESS OF operator, & = ADDRESS OF operator

c.

* = VALUE AT operator, & = ADDRESS OF operator

d.

* = VALUE AToperator, & = VALUE AT operator

Posted under C Programming

Answer: (c).* = VALUE AT operator, & = ADDRESS OF operator

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. What do you call STAR * and Ampersand & in a c program context?