标签:代码 语言 span 字符 include image ima mamicode stdio.h
学习c语言字符数组,发现个问题,第三行多了两个星星
代码如下:
#include <stdio.h> main() { char a[][5]={{‘ ‘,‘ ‘,‘*‘},{‘ ‘,‘*‘,‘ ‘,‘*‘},{‘*‘,‘ ‘,‘ ‘,‘ ‘,‘*‘},{‘ ‘,‘*‘,‘ ‘,‘*‘},{‘ ‘,‘ ‘,‘*‘}}; int i,j; for(i=0;i<5;i++) { for(j=0;j<5;j++) printf("%c",a[i][j]); printf("\n"); } for(j=0;j<5;j++) {printf("%s",a[j]); printf("\n");} return 0; }
显示效果如下:
标签:代码 语言 span 字符 include image ima mamicode stdio.h
原文地址:https://www.cnblogs.com/8-eight/p/10802349.html