Showing posts with label Array. Show all posts
Showing posts with label Array. Show all posts

Sunday, November 27, 2011

Output & Errors

void main()
{
  char s[ ]="man";
  int i;
  for( i=0 ; s[ i ] ; i++ )
   printf("\n%c %c %c %c" , s[ i ], *(s + i), *(i + s), i[s]);
}