#include<stdio.h>#include<conio.h>void main(){char far *v=(char far*)0xb8000000;clrscr();*v='w';v+=2;*v='e';getch();}