Deprecated: Implicit conversion from float-string "1538570945.214" to int loses precision in /var/www/html/qadb/qa-include/app/format.php on line 796

Deprecated: Implicit conversion from float-string "1538570945.214" to int loses precision in /var/www/html/qadb/qa-include/app/format.php on line 801

Deprecated: Implicit conversion from float-string "1538570945.214" to int loses precision in /var/www/html/qadb/qa-include/app/format.php on line 802

Deprecated: Implicit conversion from float-string "1538570945.214" to int loses precision in /var/www/html/qadb/qa-include/app/format.php on line 803

Deprecated: Implicit conversion from float-string "1538570945.214" to int loses precision in /var/www/html/qadb/qa-include/app/format.php on line 594

Deprecated: Implicit conversion from float-string "1538572724.751" to int loses precision in /var/www/html/qadb/qa-include/app/format.php on line 796

Deprecated: Implicit conversion from float-string "1538572724.751" to int loses precision in /var/www/html/qadb/qa-include/app/format.php on line 801

Deprecated: Implicit conversion from float-string "1538572724.751" to int loses precision in /var/www/html/qadb/qa-include/app/format.php on line 802

Deprecated: Implicit conversion from float-string "1538572724.751" to int loses precision in /var/www/html/qadb/qa-include/app/format.php on line 803

Deprecated: Implicit conversion from float-string "1538572724.751" to int loses precision in /var/www/html/qadb/qa-include/app/format.php on line 594

Deprecated: Implicit conversion from float-string "1538587152.856" to int loses precision in /var/www/html/qadb/qa-include/app/format.php on line 796

Deprecated: Implicit conversion from float-string "1538587152.856" to int loses precision in /var/www/html/qadb/qa-include/app/format.php on line 801

Deprecated: Implicit conversion from float-string "1538587152.856" to int loses precision in /var/www/html/qadb/qa-include/app/format.php on line 802

Deprecated: Implicit conversion from float-string "1538587152.856" to int loses precision in /var/www/html/qadb/qa-include/app/format.php on line 803

Deprecated: Implicit conversion from float-string "1538587152.856" to int loses precision in /var/www/html/qadb/qa-include/app/format.php on line 594
Programming in C: parameter passing technique
539 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


Deprecated: Implicit conversion from float-string "1542294790.114" to int loses precision in /var/www/html/qadb/qa-include/app/format.php on line 796

Deprecated: Implicit conversion from float-string "1542294790.114" to int loses precision in /var/www/html/qadb/qa-include/app/format.php on line 801

Deprecated: Implicit conversion from float-string "1542294790.114" to int loses precision in /var/www/html/qadb/qa-include/app/format.php on line 802

Deprecated: Implicit conversion from float-string "1542294790.114" to int loses precision in /var/www/html/qadb/qa-include/app/format.php on line 803
533
views
1 answers
0 votes
shree asked Nov 22, 2014
533 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...
1.3k
views
1 answers
0 votes
Balaji Jegan asked Nov 15, 2018
1,307 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(...
570
views
0 answers
0 votes
Rishabh Baghel asked Mar 5, 2018
570 views
Does C support all passing parameters techniques like call by text, call by copy restore, and call by name?
759
views
1 answers
1 votes
Ahwan asked Aug 20, 2017
759 views
int f(int &x, int c) { c = c-1; if (c == 0) return 1; x = x +1; return f(x,c) * x; } What is the return value of $f(p,p),$ if the value of $p$ i...