c-参数(argument)

  In  C,  array arguments behave as though they are passed by reference, and scalar variables and constants are passed by value (like var parameters and value parameters, respectively, in Pascal or Modula).

  Thus, any changes made by a function to a scalar argument are lost when the function returns; the function cannot change the value of the calling programȇs argument in this manner.

  When a function changes the value of an element of an array argument, however, the array in the calling program is actually modified. 

posted @ 2014-08-22 14:17  wonkju  阅读(338)  评论(0编辑  收藏  举报