Question: C language This program prompts the user to enter the length of the line & and a string. Then, reverses that text line by line

 C language This program prompts the user to enter the length

C language

This program prompts the user to enter the length of the line & and a string. Then, reverses that text line by line (based on how many lines the user specified).

Note: All lines should be "right-justified" as shown in the example.

My code below only reverses the whole text. Thank you in advance.

#include

#include

int main()

{

char s[100], r[100];

int i, j, k, l;

/*

i = Text length.

j = last element in the array.

k = first element in the array.

l = length of the line.

*/

printf("Enter the output line length: ");

scanf("%d", &l);

printf("Enter a string: ");

while (!feof(stdin)){

fgets(s, 100, stdin);

i = strlen(s);

for (j = i - 1, k = 0; j >= 0; j--, k++)

r[k] = s[j];

}

printf("%s ", r);

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!