Question: procedure took (int a, int b, int c ) start a=b+c; b=c+1; print (a,b,c); end function main start int i=5; int j =10; ink k=15;

procedure took (int a, int b, int c ) start a=b+c; b=c+1; print (a,b,c); end function main start int i=5; int j =10; ink k=15; took (i,j,j+k); print (i,j,k); end 1. All parameters are call by value (CBV) 2. Call a,b by reference, and c by value 3. Call a, b by value-result and c by value 4. All parameters are call by name
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
