#include<conio.h>
#include<stdio.h>
void main()
{
int i=0;
char s[]={"this is string"};
while(s[i]!=0)
{
printf("%c",i[s]);
i++;
}
}
This Program does not give error and produce output as "this is string". why..??