求C语言中TEMP的用法

2024-11-18 18:33:56
推荐回答(1个)
回答1:

temp其实是一个变量吧,当作一个中间变量来用的
比如想交换两个数
那么
void
swap(int
&a,int
&b)
{
int
temp=a;
a=b;
b=temp;
}