Question: ( C language ) please solve these question correct and clear as soon as possible. Question 1 Run the following program to see the result

 ( C language ) please solve these question correct and clear

( C language ) please solve these question correct and clear as soon as possible.

Question 1 Run the following program to see the result of using some escape sequences. #include void main() { printf("Hi "); printf("\" Hi " "); printf("\ Hi "); printf("H \t I "); printf("\ala Hi "); printf(" :-) "); } /* use for next line */ /* use" for */ /* use for */ /* use it for tab */ /* use la for beep / 1* print a smiley face / Question 2 What are the outputs of the program below? #include int main() { printf ("Integers: %i %u ", -3456, 3456); printf ("Characters: %c %c ", 'z', 80); printf ("Preceding with empty spaces: %100 ", 1997); printf ("Preceding with zeros: %010d ", 1997); printf ("Width: %*d ", 15, 140); printf ("%s ", "Educative"); return 0; }

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!