145k views
2 votes
Assume that x is an integer variable. Which of the following represents the memory address where x is stored? E) None of the Above A) x B) &x C) *x D) 2**

User James Hunt
by
7.9k points

1 Answer

1 vote

Answer: (B) &x

Step-by-step explanation:

Here whenever any variable is stored let it be integer, char, float it is always stored in a memory location assigned as '&'. Here the location where x is stored is denoted as '&x' which means memory address of x. *x means the pointer which is pointing to the memory address of x.

User YuTing
by
8.8k points