将String变量作为索引传递给c中的Integer变量

时间:2017-04-27 11:37:54

标签: c

#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++;
    }
}

本程序不会产生错误并产生输出,因为“这是字符串”。 为什么..??

0 个答案:

没有答案