本文介绍了问题基于C语言的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

main()

{

char x;

int y;

x = 100;

y = 125;

printf(%c\ n,x);

printf(%c \ n,y) ;

printf(%d \ n,x);

}



plzz给我输出的正确解释。



我尝试过:



在运行此代码时我得到的输出为

d

}









但是为什么????????

解决方案



main()
{
char x;
int y;
x=100;
y=125;
printf("%c\n",x);
printf("%c\n",y);
printf("%d\n",x);
}

plzz give me proper explanation for the Output.

What I have tried:

on running this code i am getting output as
d
}
100



but why????????

解决方案



这篇关于问题基于C语言的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-21 19:04