【C语言高级操作】之坐井说天阔

2023-12-31 19:48:36

1.定义的变量既是实参,又是返回值

#include <stdio.h>

int test(int a)
{
	printf("111 %d",a);
	int b = a+10;
	return (b);
}
int main()
{
   /*  Write C code in this online editor and run it. */
	int a = test(a);
   printf("Hello, World! %d\n",a);
   
   return 0;
}

//输出结果:
//111 0Hello, World! 10

可以看出:

int a = test(a);
//等价
 int  a = 0;
a = test(a);

文章来源:https://blog.csdn.net/qq_44704780/article/details/134949320
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。