Ask Question
6 September, 22:15

Run-time parameters passed to a function allow you to use different values each time the function is called.

Select one:

True

False

+3
Answers (1)
  1. 7 September, 00:36
    0
    True

    Explanation:

    Run-time parameters passed to a function allow you to use different values each time the function is called. Let us consider an example:

    int add (int a, int b) {

    return a+b;

    }

    Now we can execute the same function with different parameters at runtime:

    add (3,4) returns 7.

    add (1,2) return 3.

    add (10,1) return 11.

    During each invocation, the formal function parameters are substituted by actual runtime values and the function code is executed.
Know the Answer?
Not Sure About the Answer?
Find an answer to your question ✅ “Run-time parameters passed to a function allow you to use different values each time the function is called. Select one: True False ...” in 📘 Computers and Technology if you're in doubt about the correctness of the answers or there's no answer, then try to use the smart search and find answers to the similar questions.
Search for Other Answers