Computer Science, asked by nichal4919, 10 months ago

Fill in the blanks:
(a) A pointer variable stores the ............................ of another variable.
(b) The ............................ operator is called address operator.
(c) To declare t_age pointer to integer, we should write ............................
(d) If A is an integer variable then ............................ gives its address.
(e) If ptr is a pointer to an integer variable, the number stored in it is
given by ..............................

Answers

Answered by kailashdudhe596
1

Answer:

Maths, science, hindi, math,-math

Answered by AnusritaS98
0

Answer:

(a) A pointer variable stores the memory address of another variable.

(b) The pointer operator is called address operator.

(c) To declare t_age pointer to integer, we should write int *p; int *p; int *p;

(d) If A is an integer variable then int var= A gives its address.

(e) If ptr is a pointer to an integer variable, the number stored in it is

given by 0

Similar questions