Shadow_ZED 发表于 2017-7-19 12:31:54

输出字符没有按照ASCII走

#include<stdio.h>
int main()//Glmre
{
        char c1='C',c2='h',c3='i',c4='n',c5='a';
        c1=+2;
        c2=+4;
        c3=+4;
        c4=+4;
        c5=+4;
        printf("%c%c%c%c%c",c1,c2,c3,c4,c5);
        return 0;
}


这个输出结果不应该是Glmre吗,为啥是一堆乱码

ba21 发表于 2017-7-19 12:35:57

#include<stdio.h>
int main()//Glmre
{
      char c1='C',c2='h',c3='i',c4='n',c5='a';
      c1+=2;
      c2+=4;
      c3+=4;
      c4+=4;
      c5+=4;
      printf("%c%c%c%c%c\n",c1,c2,c3,c4,c5);
      return 0;
}
Elmre
页: [1]
查看完整版本: 输出字符没有按照ASCII走