在C语言中有一下赋值语句,问有什么错误
int a ,b;
a=a+b;
b=b-a;
a=a-b;
请大家赐教,我找不出错误的!
看题意好像是是a和b不通过temp就能交换值的程序
a=a+b;
b=a-b;
a=a-b;