3
Answers

How to use vertical tab

Ask a question
Maha

Maha

12y
2.3k
1
In the following program vertical output is expected using "\v ". Please use \v to get the following output.

1
2
3
4
5
6
7
8
9
10


using System;

namespace _5e11
{
class Table
{
static void Main(string[] args)
{
for (int x = 1; x <= 10; ++x)
{
Console.Write("\v{0}", x);
}



Console.ReadKey();

}
}
}


Answers (3)