Question: ***************IN C LANGUAGE ONLY PLEASE* Write a program that meets the following objectives: fetches string input from the user processes input and a string literal
***************IN C LANGUAGE ONLY PLEASE*

Write a program that meets the following objectives: fetches string input from the user processes input and a string literal to generate a phrase outputs the phrase . Details: 1. String Input: o prompt for the user to type their name o write a loop to process single-character input, storing it in a buffer called namel] the buffer can hold up to 32 characters 2. String Processing: o copy input stored in the name[] array into the buffer[] array o append text from the last[] array onto the buffer[] array the last[] array contains the string literal: "job well done" 3. String Output: o output the character array buffer[] o don't use puts() or printf() to output the array o instead, use the putchar() function in a loop 4. Expected output: What is your name? Jill Dill Jill Dill job well done
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
