FP_SEG,一種數學函式,功 能是獲取遠地址段值。
基本介紹
- 中文名:FP_SEG
- 功 能:獲取遠地址段值
- 用 法::unsigned FP_SEG
- 實質:函式
函式名: FP_SEG
功 能: 獲取遠地址段值
用 法: unsigned FP_SEG(void far *farptr);
程式例:
/* FP_SEG */
#include <dos.h>
#include <stdio.h>
int main(void)
{
char *filename = "fpseg.c";
printf("The offset of this file in memory\
is: %Fp\n", FP_SEG(filename));
return(0);
}