637 views
0 votes
0 votes

1 Answer

0 votes
0 votes
Yes u have to study as it involves concept of pointer

Related questions

1 votes
1 votes
1 answer
1
1 votes
1 votes
1 answer
2
neha singh asked Aug 26, 2016
944 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.
0 votes
0 votes
1 answer
3
shree asked Nov 22, 2014
527 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
0 answers
4
Rishabh Baghel asked Mar 5, 2018
580 views
Does C support all passing parameters techniques like call by text, call by copy restore, and call by name?