When you create an array in C# using something like new int[10], its contents are automatically initialized to '0' (or 'null' if it is new string[10]). However, depending on the program requirements, ...