This program is to print name without using the header files
void main()
{
int i;
char far *s=(char far *)0xb8000000l ;
*(s+2)='p';
*(s+4)='r';
*(s+6)='i' ;
*(s+8)='i' ;
*(s+10)='t';
}
please explain the meaning of the line char far *s=(char far *)0xb8000000l ;