Ask Question
7 November, 14:42

Code a call to function aNonclassFunction passing co.

a) aNonclassFunction (co);

b) aNonclassFunction ( * co);

c) aNonclassFunction (aGoodClass. co);

d) aNonclassFunction (aGoodClass);

+4
Answers (1)
  1. 7 November, 17:04
    0
    a) aNonclassFunction (co);

    Explanation:

    When we call a function we just have to write the name of the variable that we are passing to the function. We don't have to write any operator.

    So the function call is like this:-

    function_name (var_name);

    In our case it is

    aNonclassFunction (co);

    Hence the answer is option a.
Know the Answer?
Not Sure About the Answer?
Get an answer to your question ✅ “Code a call to function aNonclassFunction passing co. a) aNonclassFunction (co); b) aNonclassFunction ( * co); c) aNonclassFunction ...” in 📙 Computers & Technology if there is no answer or all answers are wrong, use a search bar and try to find the answer among similar questions.
Search for Other Answers