public static void pushZerosToEnd(int[] arr)
public static void Main()
Console.WriteLine("Move All Zeros");
int[] arr = new int[] {1, 9, 8, 4, 0, 0, 2, 7, 0, 6, 0, 9};
Console.WriteLine("Array after pushing zeros to the back: ");
for (int i=0; i<arr.Length; i++)
Console.Write(arr[i]+" ");