Computer Science, asked by rajeswarimarimurugan, 5 hours ago

explain arguments with data type with suitable example​

Answers

Answered by MaheshBabu511
0

Answer:

The following rules apply to parameters and arguments of C functions: ... Arguments are passed by value; that is, when a function is called, the parameter receives a copy of the argument's value, not its address. This rule applies to all scalar values, structures, and unions passed as arguments.

Answered by Aaaryaa
0

C functions exchange information by means of parameters and arguments. 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.

Similar questions