Which of the following statements is correct about the formal parameters in C++?
Which of the following statements is correct about the formal parameters in C++?
Right Answer is:
Parameters with which functions are called
SOLUTION
Parameters that are used in the body of the function are known as formal parameters. These parameters represent the parameters passed to the function and are only used inside the function’s body.