Ask Question
27 December, 05:11

How can the function anotherFunc2 change the contents of the second element of t?

a) change t[1]

b) change t[2]

c) change * t[1]

d) change * t[2]

+1
Answers (1)
  1. 27 December, 07:09
    0
    a) change t[1].

    Explanation:

    The array stores elements in serial order. It keeps an index associated to every element of the array and the indexing start form 0 to size-1. So to access the second element in the array it's index will be 1. So to access the second element we have to write arrayname[1];

    In our case the array name is t.

    So t[1];

    Hence the answer is change t[1];
Know the Answer?
Not Sure About the Answer?
Get an answer to your question ✅ “How can the function anotherFunc2 change the contents of the second element of t? a) change t[1] b) change t[2] c) change * t[1] d) change ...” 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