解釋
函式名: farcoreleft功能: 返回遠堆中未作用存儲區大小
用法: long farcoreleft(void);
程式例
#include <stdio.h>#include <alloc.h>
int main(void)
{
printf("The difference between the\
highest allocated block in the\
far\n");
printf("heap and the top of the far heap\
is: %lu bytes\n", farcoreleft());
return 0;
}