函数名: FP_OFF
功  能: 获取远地址偏移量
用  法: unsigned FP_OFF(void far *farptr);
程序例:
/* FP_OFF */
#include <dos.h>
#include <stdio.h>
int main(void)
{
   char *str = "fpoff.c";
   printf("The offset of this file in memory\
          is: %Fp\n", FP_OFF(str));
   return 0;
}