the escape sequence \t represent
Answers
Answer:
the escape sequence \t represent tab space in python
Tab space represents 4 spaces...
example:
print("Hello\tWorld")
Output:
Hello World
# HOPE THIS HELPS YOU!!
Answer:
Yes, we are using escape sequence \t in C Programming languages for back slash purpose. \n is also a escape sequence used for new line purpose in C Programming languages. As we know that, we are using escape sequence method in C Programming languages to make our program comfortable and perfect. Just like if you will create a C Software then first you display C Software at the centre of your Console output screen. Here, I am creating a Result Software in Look it output as well as coding of printing Result Application.
If you are writing the code to print Hello Brainly, then use this code. I am using here the concept of \t.
- #include <stdio.h>
- #include <conio.h>
- int main()
- {
- clrscr ();
- printf ("Hello\tBrainly");
- getch ();
- }
OUTPUT
>> Hello Brainly