Computer Science, asked by ashrafaadil49, 8 months ago

the escape sequence \t represent​

Answers

Answered by gaganadithyareddy9
1

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!!

Answered by Anshu33845
1

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.

  1. #include <stdio.h>
  2. #include <conio.h>
  3. int main()
  4. {
  5. clrscr ();
  6. printf ("Hello\tBrainly");
  7. getch ();
  8. }

OUTPUT

>> Hello Brainly

Attachments:
Similar questions