其他分享
首页 > 其他分享> > 实际参数和形式参数的区别

实际参数和形式参数的区别

作者:互联网

实际参数是出现在函数调用圆括号中的表达式.

形式参数是函数定义的函数头中声明的变量.

#include<stdio.h>
#define LIMIT65
void starbar(void)//  函数定义
{
    int count;
    for (count=1;---)
        putchar('*');
    putchar('\n');
}

函数头:

#include<stdio.h>
#define LIMIT65
void starbar(void)

函数体

{
    int count;
    for (count=1;---)
        putchar('*');
    putchar('\n');
    return 0;
}

函数调用:

int main (int a)
{
    ---
    ---
    ---
    starbar();//函数调用
    ---
}

标签:count,putchar,区别,int,void,函数调用,---,参数,形式参数
来源: https://www.cnblogs.com/tqtsanshi/p/16628488.html