CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2

Thread: far pointers

  1. #1
    Join Date
    Mar 2002
    Location
    Kerala, India
    Posts
    10

    far pointers

    Could anyone help me out with the concept of far ponters in C++? What are they used for and how do they function?


  2. #2
    Join Date
    Mar 2002
    Posts
    12

    Re: far pointers

    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

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured