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

Is c++ the hardest programming language?

0 Answers  


Keyword mean in declaration?

0 Answers  


If a base class is an adt, and it has three pure virtual functions, how many of these functions must be overridden in its derived classes?

0 Answers  


Do vectors start at 0 c++?

0 Answers  


Differentiate between late binding and early binding. What are the advantages of early binding?

0 Answers  






There are 100 students in a class. The management keep information in two tables. Those two tables are given like Roll no Name Age 001 ABC 15 002 XYZ 14 and Roll No Subject Marks 001 Math 75 001 Physics 55 002 Math 68 001 Hindi 69 They want the information like this Roll No Name Hindi Physics Math Total 001 ABC 69 55 75 199 002 XYZ 68 74 84 226 And Roll No Suject Highest 001 Math 98 007 Physics 84 021 Hindi 74 All 275 All information is kept in structure in main memory. You have to find last two tables.

0 Answers  


What is #include iostream h in c++?

0 Answers  


Explain the uses oof nested class?

0 Answers  


How are Structure passing and returning implemented by the compiler?

0 Answers  


What is the use of endl in c++ give an example?

0 Answers  


What are the effects after calling the delete this operator ?

0 Answers  


Does c++ have string data type?

0 Answers  


Categories