Click to See Complete Forum and Search --> : far pointers


sukesh_soman
March 11th, 2002, 11:29 AM
Could anyone help me out with the concept of far ponters in C++? What are they used for and how do they function?

rkb_butterfly
March 21st, 2002, 02:07 AM
far pointers take 4 bytes in C++ and they are used to point some memory out of current segment. let the current segment be of 64K then one can allocate memory with in this limits. Far pointers can not exceed limits of a segment.

With king regards