GeekInterview.com
   Home |  Tech FAQ  |   Interview Questions |  Placement Papers |  Tech Articles |  Learn |  Freelance Projects |  Online Testing |  Geeks Talk |  Job Postings |  Knowledge Base | Site Search |  Add/Ask Question

  GeekInterview.com  >  Interview Questions  >  Concepts  >  Data Structures

 Print  |  
Question:  what is the size of a void pointer ?



March 03, 2008 10:02:54 #7
 as_hmr   Member Since: April 2007    Total Comments: 3 

RE: what is the size of a void pointer ?
 
Yes pointer size is always that of size of word on a particular architecture.

Actually pointer only contains starting address of a data type, there after how many bytes we have to read (e.g. 1 for char, 2 for int) depends upon type of pointer declared.
     

 

Back To Question