Understanding Function Parameters and Arguments in C Language in One Sentence
Key Summary:After a function call, the operation is performed on the initialized parameter, not the argument!Function Parameters and ArgumentsIn C language, depending on the different states of the function, the parameters can be roughly divided into two categories: one is formal parameters, and the other is actual parameters.Formal parametersare the parameters declared in the function … Read more