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

What is the best way to take screenshots of a window with c++ in windows?

0 Answers  


what is upcasting in C++?

0 Answers  


How do I start a c++ project?

0 Answers  


What is the use of string in c++?

0 Answers  


What is the array and initializing arrays in c++?

0 Answers  


What is class invariant?

1 Answers  


What are containers in c++?

0 Answers  


Which bitwise operator is used to check whether a particular bit is on or off?

0 Answers  


Where do I find the current c or c++ standard documents?

0 Answers  


class Foo { const int x; protected: Foo(int f); ~Foo(); }; Foo f; Referring to the sample code above, why will the class declaration not compile? a) The variable x is const. b) The destructor is protected. c) The destructor is not public. d) The constructor is protected. e) There is no default constructor.

5 Answers   Quark,


What is an Object/Instance?

1 Answers  


What is while loops?

0 Answers  


Categories