下面中的程序的输出结果是?( )
int main(){
int a,b;
a=5;
b=3;
a=b;
b=a;
printf("%d,%d",a,b);
return 0;
}
3.5
3.3
5.3
运行错误