list0502.c
来自「c21Examples.rar」· C语言 代码 · 共 30 行
C
30 行
/* Illustrates the difference between arguments and parameters. */
#include <stdio.h>
float x = 3.5, y = 65.11, z;
float half_of(float k);
int main( void )
{
/* In this call, x is the argument to half_of(). */
z = half_of(x);
printf("The value of z = %f\n", z);
/* In this call, y is the argument to half_of(). */
z = half_of(y);
printf("The value of z = %f\n", z);
return 0;
}
float half_of(float k)
{
/* k is the parameter. Each time half_of() is called, */
/* k has the value that was passed as an argument. */
return (k/2);
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?