Home / CSE MCQs / C-MCQs :: Discussion

Discussion :: C-MCQs

  1. Which of the following are correct syntaxes to send an array as a parameter to function:
  2. A.
    func(&array);
    B.
    func(array);
    C.
    func(*array);
    D.
    func(array[size]);

    View Answer

    Workspace

    Answer : Option A

    Explanation :

    None.


Be The First To Comment