1. (50% credit) Write a program that will ask the user to input a string up to 20 characters in length. The program should then display the characters in the string as shown below. The characters on the right which are not displayed should be displayed on the left. For example, if the input is "de la salle", the output should be: de la salle ede la sall lede la sal llede la sa allede la s sallede la sallede la a sallede 1 la sallede la sallede e la salled The output should go both to the screen and a text file named output.txt

Computer Networking: A Top-Down Approach (7th Edition)
7th Edition
ISBN:9780133594140
Author:James Kurose, Keith Ross
Publisher:James Kurose, Keith Ross
Chapter1: Computer Networks And The Internet
Section: Chapter Questions
Problem R1RQ: What is the difference between a host and an end system? List several different types of end...
icon
Related questions
Question
programming language : C ... ex1_main.cpp #include #include #include "lab2_ex1.h" #include "lab2_ex1.cpp" #define BUFFER 21 #define OUTPUT_FILE "output.txt" int main(void) { char input[BUFFER]; printf("input: "); fgets(input, BUFFER, stdin); box_shift( input, OUTPUT_FILE); return 0; } ... lab2_ex1.cpp /* EDIT THIS FILE TO SOLVE THE LABORATORY EXERCISES */ #include #include #include #include #include using namespace std; void box_shift(char *input, const char *filename) { // Open a file for writing FILE *fp; fp = fopen(filename, "w"); //ofstream writeFile; //writeFile.open(filename); string arr = ""; for (int i = 0; i < sizeof(input); i++) { arr = arr + input[i]; } int length; int k, i = 0, j; //cout << "Length (11 for [de la salle])? " << endl; //cin >> length; //arr = (char*) malloc (length * sizeof(char)); //cout << "Text? "; lab2_ex1.h #ifndef lab2_ex1_h #define lab2_ex1_h void box_shift(char*, const char*); #endif ... VERY IMPORTANT NOTE: Modify/edit/fix only lab2_ex1.cpp to make the program work. i'm using VS Code on Windows.
1. (50% credit) Write a program that will ask the user to input a string up to 20 characters in length. The program
should then display the characters in the string as shown below. The characters on the right which are not
displayed should be displayed on the left. For example, if the input is "de la salle", the output should be:
de la salle
ede la sall
lede la sal
llede la sa
allede la s
sallede la
sallede la
a sallede 1
la sallede
la sallede
e la salled
The output should go both to the screen and a text file named output.txt
Transcribed Image Text:1. (50% credit) Write a program that will ask the user to input a string up to 20 characters in length. The program should then display the characters in the string as shown below. The characters on the right which are not displayed should be displayed on the left. For example, if the input is "de la salle", the output should be: de la salle ede la sall lede la sal llede la sa allede la s sallede la sallede la a sallede 1 la sallede la sallede e la salled The output should go both to the screen and a text file named output.txt
Expert Solution
steps

Step by step

Solved in 4 steps with 3 images

Blurred answer
Recommended textbooks for you
Computer Networking: A Top-Down Approach (7th Edi…
Computer Networking: A Top-Down Approach (7th Edi…
Computer Engineering
ISBN:
9780133594140
Author:
James Kurose, Keith Ross
Publisher:
PEARSON
Computer Organization and Design MIPS Edition, Fi…
Computer Organization and Design MIPS Edition, Fi…
Computer Engineering
ISBN:
9780124077263
Author:
David A. Patterson, John L. Hennessy
Publisher:
Elsevier Science
Network+ Guide to Networks (MindTap Course List)
Network+ Guide to Networks (MindTap Course List)
Computer Engineering
ISBN:
9781337569330
Author:
Jill West, Tamara Dean, Jean Andrews
Publisher:
Cengage Learning
Concepts of Database Management
Concepts of Database Management
Computer Engineering
ISBN:
9781337093422
Author:
Joy L. Starks, Philip J. Pratt, Mary Z. Last
Publisher:
Cengage Learning
Prelude to Programming
Prelude to Programming
Computer Engineering
ISBN:
9780133750423
Author:
VENIT, Stewart
Publisher:
Pearson Education
Sc Business Data Communications and Networking, T…
Sc Business Data Communications and Networking, T…
Computer Engineering
ISBN:
9781119368830
Author:
FITZGERALD
Publisher:
WILEY