My photo
Bangalore, Karnataka, India
Extending one hand to help someone has more value rather than joining two hands for prayer

Archives

program to show the use of gotoxy

Tuesday, September 1, 2009

#include <conio.h>

int main(void)
{
   clrscr();
   gotoxy(35, 12);
   cprintf("Hello world");
   gotoxy(10, 4);
   cprintf("Hello ");
   getch();
   return 0;
}

0 comments: