TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Maha
NA
0
324k
How to use vertical tab
Aug 10 2012 6:04 AM
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();
}
}
}
Reply
Answers (
3
)
How to do touchscreen montior software
Help with First Calculator Program