formal parameter :

[3.16] object declared as part of a function declaration or definition that acquires a value on
entry to the function,

Example :

int x (int y, int z);

int b (int zz, int cc) {
return zz + cc ;
}

y and z and zz and cc are both formal parameters.

Reference :

C11 ISO_IEC 9899
n1570

相关文章:

  • 2021-07-03
  • 2022-12-23
  • 2022-12-23
  • 2021-11-09
  • 2022-01-28
  • 2021-12-04
  • 2021-08-27
  • 2021-05-23
猜你喜欢
  • 2022-12-23
  • 2022-01-05
  • 2021-06-30
  • 2022-01-27
  • 2021-11-11
  • 2021-08-19
  • 2021-07-13
相关资源
相似解决方案