程序代码三题的
T1 #include"stdio.h" int main() { int i; char a[9],*p; scanf("%s",a); p=a; for(i=0;i<=9;i++) { printf("%c ",*p++); } }