调试程序后,系统会不会出现错误的显示结果
#include <stdio.h>void main()
{
int a,b=322;
float x,y=8.88;
char c1='k',c2;
a=y;
x=b;
a=c1;
c2=b;
printf("%d,%f,%d,%c",a,x,a,c2);
}
输出结果为:
107,322.000000,107,B请按任意键继续. . .
为什么系统会输出这个结果呢?
这个结果很明显是错误的吧......
2018-10-06 18:10
2018-10-09 00:51
2018-10-09 01:07
2018-10-09 01:08