closed by
307 views
0 votes
0 votes
closed with the note: got the answer.

why we use parameter passing technique in C??

OR

purpose of using "parameter passing technique"??

OR

what is the advantage of using it in C??

closed by

Related questions

0 votes
0 votes
1 answer
1
Arun Rout asked Jan 7, 2019
737 views
#include<stdio.h>int fun(int arr[]){ arr=arr+1; printf("%d",arr[0]);}int main(void){ int arr ={10,20}; fun(arr); printf("%d",arr[0]); return 0;}A.COMPIL...
0 votes
0 votes
1 answer
2
Balaji Jegan asked Nov 15, 2018
1,337 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
Rahul_Rathod_ asked Oct 3, 2018
531 views
from below list of parameter passing techniques, which parameter passing technique we can implement in c?1) call by value2) call by refference3) call by value result4) ca...
0 votes
0 votes
0 answers
4
Rishabh Baghel asked Mar 5, 2018
576 views
Does C support all passing parameters techniques like call by text, call by copy restore, and call by name?