GeekInterview.com
  I am new, Sign me up!
 
GeekInterview.com  >  Tech FAQs  >  OOPS
Go To First  |  Previous Question  |  Next Question 
 OOPS  |  Question 69 of 258    Print  
What is a pointer?

  
Total Answers and Comments: 4 Last Update: May 23, 2006   
  
 Sponsored Links

 
 Best Rated Answer

No best answer available. Please pick the good answer available or submit your answer.
September 01, 2005 06:01:48   #1  
s.annalakshmi        

RE: What is a pointer?
pointer is used to find the address of the variable
 
Is this answer useful? Yes | No
December 09, 2005 03:26:16   #2  
Shrihari Alawani        

RE: What is a pointer?

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.


 
Is this answer useful? Yes | No
December 09, 2005 03:26:41   #3  
Shrihari Alawani        

RE: What is a pointer?

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.


 
Is this answer useful? Yes | No
May 23, 2006 03:30:23   #4  
Rahul Shukla        

RE: What is a pointer?

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.


 
Is this answer useful? Yes | No


 
Go To Top


 Sponsored Links

 
About Us -  Privacy Policy -  Terms and Conditions -  Contact -  Ask Question -  Propose Category -  Site Updates 

Copyright © 2005 - 2009 GeekInterview.com. All Rights Reserved

Page copy protected against web site content infringement by Copyscape