[求助]结构的问题
在结构的返回值中(return),我要怎么接收啊! 搜索更多相关的解决方案:
结构
----------------解决方案--------------------------------------------------------
比如说:
int test(int d)
{
return d;
}
void main()
{
int i,j=3;
i = test(j); //在这里接受 test返回的值
printf("%d",i);
}
----------------解决方案--------------------------------------------------------
比如被调用的函数名称为 name()
在被调用的函数中 rerurn 变量m的值
在调用的函数中将m的值返回给n的话
就写 n=name();
----------------解决方案--------------------------------------------------------
返回结构体变量和其他的是一样的.
node head();
{
...
return(node型变量);
}
node a=head();
----------------解决方案--------------------------------------------------------