Arguments passed to a function in C language are called____.
A. Formal arguments
B. Actual Arguments
C. Definite Arguments
D. Ideal Arguments
Answers
Answered by
2
Answer:
I think it is ideal arguments
option d
Answered by
0
(B) Actual Arguments.
Parameters passed with a function in the C language are named Actual Arguments.
Explanation:
Actual arguments are the parameters or arguments passed in the function calls.
Actual arguments can be specified when the function call is initiated.
The Datatype of the actual parameter is not necessary to be specified in the function call.
Consider the following snippet.
int myFunc(16, 96)
{
.
.
.
}
Here 16 and 96 are the actual arguments passed in the function myFunc().
Actual arguments can be expressions, constant, variable, etc.
Hence, Arguments passed to a function in C language are called Actual Arguments.
Similar questions
Computer Science,
1 month ago
English,
1 month ago
Computer Science,
1 month ago
English,
2 months ago
History,
9 months ago