Ask Question

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. 1 February, 15:57
    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 & Technology if the answers seem to be not correct or there’s no answer. Try a smart search to find answers to similar questions.
Search for Other Answers