I\'m trying to format some output to the console but having some problems with a solution. I\'m doing it in C# but everything time I call Console.Write it prints the the ent
To start a new line:
Console.WriteLine();
For example:
var names = str.Split(); for (int i = 0; i < names.Length; i++) { Console.Write(names[i] + '\t'); if ((i + 1) % 4 == 0) Console.WriteLine(); }