InterviewSolution
| 1. |
What Does A Function Declared As Pascal Do Differently? |
|
Answer» In C, when some function is called, the parameters are put at the top of the stack. Now the order in which they are put is the order in which the parameters are parsed. Normally, the order is right to left. That is, the right most is parsed FIRST and the left most parameter is parsed at last. In C, when some function is called, the parameters are put at the top of the stack. Now the order in which they are put is the order in which the parameters are parsed. Normally, the order is right to left. That is, the right most is parsed first and the left most parameter is parsed at last. |
|