InterviewSolution
Saved Bookmarks
| 1. |
What Is Size Of Void Pointer? |
|
Answer» Size of all pointers are same in C, REGARDLESS of their type because pointers variable holds a memory LOCATION. And for a given system, this size is constant. The type of pointer is used to know the size of the DATA that the pointer is pointer is POINTING to. Size of all pointers are same in C, regardless of their type because pointers variable holds a memory location. And for a given system, this size is constant. The type of pointer is used to know the size of the data that the pointer is pointer is pointing to. |
|