Ask Question
20 November, 15:46

Code a call to function aNonclassFunction passing co.

a) aNonclassFunction (co);

b) aNonclassFunction ( * co);

c) aNonclassFunction (aGoodClass. co);

d) aNonclassFunction (aGoodClass);

+3
Answers (1)
  1. 20 November, 19:35
    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?
Find an answer to your question ✅ “Code a call to function aNonclassFunction passing co. a) aNonclassFunction (co); b) aNonclassFunction ( * co); c) aNonclassFunction ...” 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