#include "stdio.h"
main()
{
//PROGRAM AIM : to get the base memory on the computer using 0x413 funda
unsigned int far *mem;
mem=(unsigned int far*)0x413;
printf("\nMemsize=%u Kb\n",*mem);
return 0;
}