#include <stdio.h>

int main()
{
 char str[6] = "string";
 int i;

 for(i=0;i<6;i++) {
   printf("%d\t%c\n",i,i[str]);
 }
}
