| |
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 | |