0
#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..??

BLUEPIXY
  • 39,699
  • 7
  • 33
  • 70
Aviral Ahuja
  • 205
  • 1
  • 2
  • 14

0 Answers0