标签: 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++; } }
本程序不会产生错误并产生输出,因为“这是字符串”。 为什么..??