#include<conio.h>
#include<stdio.h>
void main()
{
int x, y ;
char ch;
clrscr();
printf("Enter the coordinates of gotoxy( ) : ");
scanf("%d %d",&x,&y);
printf("Enter the character to be displayed : ");
fflush(stdin);
scanf("%c",&ch);
gotoxy(x,y);
putch(ch);
getch();
}