C语言学习(7)

1 #include <stdio.h>
2 int main(){
3     char s1[1];
4     gets(s1);
5     puts(s1);
6     printf("%d\n",sizeof(s1));
7     printf("%c\n",s1[1]);
8     return 0;
9 }

猜你喜欢

转载自www.cnblogs.com/Tobi/p/9235518.html