> 其他 >
what is the difference between parameter and argument in computer science?
The term parameter refers to any declaration within the parentheses following the function name in a function declaration or definition; the term argument refers to any expression within the parentheses of a function call.
1.parameter used in procedure defination
2.arguments used in procedure call
This example demonstrates the difference between a parameter and an argument:
void foo(int a,char b); //a and b are parameters,
here procedure is define
int main()
{
foo(5,'a'); //5 and 'a' are arguments,
here procedure is called
return 0;
}
人气:132 ℃ 时间:2020-03-26 01:19:11
解答
所以我说问错地儿了
建议你丢到编程板块去
推荐
猜你喜欢
© 2024 79432.Com All Rights Reserved.
电脑版|手机版