What is the size of pointer ?
Also size of pointer in 64 bit pointer
Answer Posted / shraddha
The size of pointer is 2 bytes on 16 bit platform
The size of pointer is 4 bytes on 32 bit platform
The size of pointer is 8 bytes on 64 bit platform
| Is This Answer Correct ? | 5 Yes | 0 No |
Post New Answer View All Answers
Explain some examples of operator overloading?
What is the difference between ++ count and count ++?
What is the use of class in c++?
Explain linear search.
What is the difference between the functions memmove() and memcpy()?
Is overriding possible in c++?
What is the best way to declare and define global variables?
What is diamond problem in c++?
Differentiate between an external iterator and an internal iterator?
How do I write a c++ program?
Is it possible to get the source code back from binary file?
Explain register storage specifier.
What is the difference between *p++ and (*p)++ ?
Can we specify variable field width in a scanf() format string? If possible how?
How do we balance an AVL Tree in C++?