In this program, we will demonstrate an escape sequence character with string and print them.
Program/Source Code:
The source code to demonstrate escape sequence characters is given below. The given program is compiled and executed successfully.
# Ruby program to demonstrate the # escape sequence characters puts "Hello\tworld" puts "Hello\b\b\b world" puts "Hello\rworld" puts "1:Hello\n2:World"
Output:
Hello world He world world 1:Hello 2:World
Explanation:
In the above program, we used the following escape sequence characters and printed strings:.
total answers (1)
start bookmarking useful questions and collections and save it into your own study-lists, login now to start creating your own collections.
Program/Source Code:
The source code to demonstrate escape sequence characters is given below. The given program is compiled and executed successfully.
Output:
Explanation:
In the above program, we used the following escape sequence characters and printed strings:.