Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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

image text in transcribed

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

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Making Databases Work The Pragmatic Wisdom Of Michael Stonebraker

Authors: Michael L. Brodie

1st Edition

1947487167, 978-1947487161

More Books

Students also viewed these Databases questions

Question

Proficiency with Microsoft Word, Excel, PowerPoint

Answered: 1 week ago

Question

Experience with SharePoint and/or Microsoft Project desirable

Answered: 1 week ago