What is the size of pointer ?
Also size of pointer in 64 bit pointer

Answers were Sorted based on User's Feedback



What is the size of pointer ? Also size of pointer in 64 bit pointer..

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

What is the size of pointer ? Also size of pointer in 64 bit pointer..

Answer / kunal mittal

Size of the pointer often corresponds to the architecture

Using a 32-bit OS gives you a 32bit pointer (ditto for 64 bit)

Is This Answer Correct ?    4 Yes 3 No

What is the size of pointer ? Also size of pointer in 64 bit pointer..

Answer / shakti singh khinchi

Ans1: Size of a pointer is size of a WORD in OS. OR you can
say that size of a pointer is similar to size of a "int"
variable on that OS.

Ans2: size of 64 bit pointer is also similar to size of an
integer type variable that is 8 bytes.

Is This Answer Correct ?    0 Yes 1 No

What is the size of pointer ? Also size of pointer in 64 bit pointer..

Answer / babita sharma

Size of a pointer is 2 Bytes

Is This Answer Correct ?    0 Yes 9 No

Post New Answer

More C++ General Interview Questions

Why should you learn c++?

0 Answers  


Describe the role of the c++ in the tradeoff of safety vs. Usability?

0 Answers  


In java a final class is a class that cannot be derived. How can you make a similar class in C++

1 Answers  


Is java a c++?

0 Answers  


Write about the scope resolution operator?

0 Answers  






difference between macro and function?

3 Answers  


What are the advantages of c++?

0 Answers  


How we can differentiate between a pre and post increment operators during overloading?

0 Answers  


How to declare a pointer to an array of integers?

0 Answers  


What is the difference between public, private, protected inheritance?

12 Answers   Wipro,


Write a program to calculate the following i want a c++program for this condition 1+4+9+16+….+100 Like this (1^2+2^2) Hint use function pow(a,b)

4 Answers   HTC, TCS,


Is overriding possible in c++?

0 Answers  


Categories