Computer Science, asked by Ghosha1155, 1 year ago

The parameter passing mechanism used in C is
a) call by name
b) call by value
c) name call
d) None of these

Answers

Answered by nisharoy4
10
the right answer is (a) call by name

i hope it's helpful to you
Answered by mindfulmaisel
0

Call by value is the parameter passing mechanism used in C.

Answer: Option (b)

Explanation:

There are ‘different ways’ where parameter or group of parameters can be passed in an argument. In c language, there are two ways of passing parameters namely pass by value and pass by reference. The pass by value can also be known as call by value. It uses in-mode type semantics.

Here the changes made to the ‘formal parameter’ will not get transmitted back to the ‘caller’. Any changes in the formal parameter does not affect any actual parameter and made changes only to the separate storage locations.

Similar questions