2D字符数组打印错误结果

时间:2018-08-20 19:03:47

标签: arrays printing

在此先感谢董事会上所有令人难以置信的回应。

我正在尝试打印2d数组以显示在其中排列的字符,但是我得到的不是字符,而是字符:

4 6
4 6
4 6
4 6
4 6
4 6

有什么主意我做错了吗?数组大小和字符串都很好...

源代码:

#include <stdio.h>

char list_ch[][2] = {
    '1', 'a',
    '2', 'b',
    '3', 'c',
    '4', 'd',
    '5', 'e',
    '6', 'f' };

int i, j;

int main() {

    printf("List_ch size:%d\n", sizeof list_ch);

    for (i = 0; i < 6; i++) {
        printf("\n");
        for (j = 0; j < 2; j++)
            printf("%c ", list_ch[i, j]);
    }
    printf("\n");

    printf("This is the string:\n");
    printf("%s", list_ch);
    return 0;
}

1 个答案:

答案 0 :(得分:1)

打印命令应更改为

printf("%c ", list_ch[i][j]);