Escape sequences in strings
using System;
class Example {
public static void Main() {
Console.WriteLine("One\tTwo\tThree");
Console.WriteLine("Four\tFive\tSix");
}
}
Output One Two Three
Four Five Six
|
HTML code for linking to this page:
Related in same category :
-
-
-
-
|