Write in C# if relevant to question and show output please
2. Replace each of the following pointer notations with a subscript notation a. (message 6)d.(stocks2) b. “amount e (yrs+10) e. (rates15) f. (codes 19) Show transcribed image text 2. Replace each of the following pointer notations with a subscript notation a. (message 6)d.(stocks2) b. “amount e (yrs+10) e. (rates15) f. (codes 19)
Answer
a.message[6]b.amount[0]c.yrs[10]d.stocks[2]e.rates[15]f.codes[19]