864 views

Please log in or register to answer this question.

Related questions

0 votes
0 votes
1 answer
1
shree asked Nov 22, 2014
505 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 votes
1 votes
1 answer
2
neha singh asked Aug 26, 2016
899 views
Program P1() { x=10, y=3; func1(y,x,x); print x; print y; } func1(x,y,z) { y=y+4; z=x+y+4; }plzz elaborate the answer explanation?thanks in advance.