Wednesday, September 17, 2008

PRINTING ASCII VALUE in c programming language or c program



void main()
{
  int i;
  clrscr();
  for(i=0;i<=255;i++)
  {
            printf("%d -> %c ",i,i);
            delay(10);
  }
  getch();
}

No comments:

Post a Comment

Thanks to given comments.......

My Blog List