3,972 questions
>My OS in 64-bit but pointer size is 4 bit.
Your operating system is not relevant. What determines the pointer
size is for which platform you have built your program. If you
build a Win32 program the pointers will be 32 bits. If you build
a Win64 program the pointers will be 64 bits.
- Wayne