显示此符号 ╠ 而不是所需的字符 [英] Displaying this symbol ╠ instead of desired characters

查看:22
本文介绍了显示此符号 ╠ 而不是所需的字符的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

这是一些代码的片段.显示 ╠ 而不是显示我正在检查的字符.

Here is a snippet of some code. Instead of displaying the characters I am checking for, ╠ is displayed.

while (c!= EOF)
{
    c = getc(fp);
    if (c==32 || c==33 || (c>=97 && c<=122) || c==35)
    j++;
    if(j==clns){
    i++;
    j=0;
    mA[i][j]=c;
    }

}


for (i = 0; i < 10; i++) {
    for (j = 0; j < 20; j++) {
        printf("%c", mA[i][j]);
    }
    printf("%c
", mA[i][j]);
}

预先感谢您的帮助.:)

Thanks in advance for your help. :)

推荐答案

您只需要写信给 mA[i][0]:

if(j==clns){
    i++;
    j=0;
    mA[i][j]=c;
}

所以你正在打印碰巧在数组中的随机垃圾.将赋值移出 if.

so you are printing random garbage that happened to be in the array. Move the assignment out of the if.

这篇关于显示此符号 ╠ 而不是所需的字符的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆