Answer: On calling a function in the call by value method, we pass the values of the variables using stack. Before the function call is made, arguments are pushed to the stack. Stack will contain a duplicate variable which are usually the arguments.
Here is the block diagram describing disassembly steps, call stack and argument variables. Calling sum (a, b) can be split into some assembly steps like-
- push value of b
- push value of a
- save return address
- call function
Here one point to note is x and y are in stack. Value of a and b will be copied to x and y. Inside sum() value of x and y will be changed but it will not affect a and b in the main().
About our authors: Team EQA
You have viewed 1 page out of 252. Your C learning is 0.00% complete. Login to check your learning progress.