访问传递参数

现在我们来看函数调用者通过栈把参数传递到被调用函数。被调用函数是如何访问这些参数呢?

  1. #include <stdio.h>
  2. int f (int a, int b, int c)
  3. {
  4. return a*b+c;
  5. };
  6. int main()
  7. {
  8. printf ("%d
  9. ", f(1, 2, 3));
  10. return 0;
  11. };