区分形参和实参

int f(int b) /*b为形参*/ 
{ return b;} 
main() 
{int a=1; 
printf("%d",f(a));/*a为实参*/ 

原文地址:https://www.cnblogs.com/helloaworld/p/8296250.html