What is the size of pointer ?
Also size of pointer in 64 bit pointer
Answer Posted / 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 |
Post New Answer View All Answers
Write a program in C++ for Fibonacci series
What are the rules for naming an identifier?
Is overriding possible in c++?
Do you know what are pure virtual functions?
What is a Default constructor?
Which command properly allocates memory a) char *a=new char[20]; b) char a=new char[20]; c) char a=new char(20.0);
Write a program to find the Factorial of a number
What are the two types of polymorphism?
What are the various storage classes in C++?
What is the use of "new" operator?
Why is main function important?
Explain what you mean by a pointer.
What are the advantages of c++?
Why can templates only be implemented in the header file?
What does scope resolution operator do?