Computer Science, asked by dobledeepkumar9, 2 months ago

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 satishchandraar8
2

Answer:

I think it is ideal arguments

option d

Answered by anjalin
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