Quantcast
Channel: Programmers Heaven Forums RSS Feed
Viewing all articles
Browse latest Browse all 2703

Query About Passing values

$
0
0
Hi..can anybody tel me that how the output would be changed for same input depending upon the method of passing values/reference/name etc.to a function?For example consider the folloing code

procedure exchange(A:integer,B:integer)
temp:integer;
begin
temp:=A;
A:=B;
B:=A;
end
begin
M:=2;X[M]=4;
exchange(M,X[M]);
write(M,X[2]);
end

what is the output for the above code when
1)If the parameters are passed by value
2)If the parameters are passed by reference
3)If the parameters are passed by name

Please help me to find out this...

Viewing all articles
Browse latest Browse all 2703

Trending Articles