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

Archives

program to display a single character a the cursor position

Tuesday, September 1, 2009

#include<iostream.h>
#include<conio.h>
void main()
{ clrscr();
 // putch(66);
  for(int i=0;i<256;i++)
  {
     textcolor(i);
     cputs("india   ");
  }
  getch();
  }

0 comments: