求C语言中TEMP的用法

2024年11月18日 18:33
有1个网友回答
网友(1):

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