List the elements of the three-by-five jagged array sales in the order in which theyre set to

Question:

List the elements of the three-by-five jagged array sales in the order in
which they’re set to 0 by the following code segment:
for (var row = 0; row < sales.Length; ++row)
{
for (var col = 0; col < sales[row].Length; ++col)
{
sales[row][col] = 0;
}
}

Fantastic news! We've Found the answer you've been seeking!

Step by Step Answer:

Related Book For  book-img-for-question

Visual C# How to Program

ISBN: 978-0134601540

6th edition

Authors: Paul J. Deitel, Harvey Deitel

Question Posted: