528 views
0 votes
0 votes
from below list of parameter passing techniques, which parameter passing technique we can implement in c?

1) call by value

2) call by refference

3) call by value result

4) call by name

5) call by text

6) call by need

Please log in or register to answer this question.

Related questions

0 votes
0 votes
1 answer
1
shree asked Nov 22, 2014
519 views
What will be the second value printed by the program if parameter passing mechanism is call by reference?int b=10 //global begin procedure func(int x,int y) begin print(b...
0 votes
0 votes
1 answer
2
Balaji Jegan asked Nov 15, 2018
1,327 views
Predict the Output for both the snippets for the following:1. Call by Value2. Call by Reference3. Call by Need4. Call by Name5. Call by value Result/Call by value Return(...
0 votes
0 votes
0 answers
3
Rishabh Baghel asked Mar 5, 2018
571 views
Does C support all passing parameters techniques like call by text, call by copy restore, and call by name?