What is a pointer?

Showing Answers 1 - 4 of 4 Answers

s.annalakshmi

  • Sep 1st, 2005
 

pointer is used to find the address of the variable

  Was this answer useful?  Yes

Shrihari Alawani

  • Dec 9th, 2005
 

Pointer is a variable which contains the address of the other variable.

Integer pointer contains the address of the integer variable, so as float and character respectively.

  Was this answer useful?  Yes

Shrihari Alawani

  • Dec 9th, 2005
 

Pointer is a variable which contains the address of the other variable.

Integer pointer contains the address of the integer variable, so as float and character respectively.

  Was this answer useful?  Yes

Rahul Shukla

  • May 23rd, 2006
 

pointer : pointer is a derived data type which holds addresses as its value. it points to value at it's address.

for ex:

int *p;

does not mean p type is integer. p can't be int. p is just a pointer variable. the above declaration means p is a pointer to an integer location.

*p means value at location p.

p means value of p.

&p means address of p.

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions