Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Write a C + + program that does the following: a . Create a C + + file with the name lab 1 3 _
Write a C program that does the following:
a Create a C file with the name labcpp
b Write the function readInput which has a onedimensional array and an integer as parameters prompting
the user for strings to fill the onedimensional array.
c Write the function getPrefixes which has two onedimensional arrays and an integer as parameters
copying the first three characters as a string of each element of the first array parameter to the
corresponding element of the second array parameter.
d Write the function concatenateStrings which has a onedimensional array and an integer as parameters
returning the concatenated string from all the elements of the array parameter.
e Write the main function that does the following:
i Declare two string arrays called words and prefixes that each have size
ii Call the function readInput passing into it the array words and
iii. Call the function getPrefixes passing into it the array words, the array prefixes, and
iv Call the function concatenateStrings passing into it the array prefixes and assigning its return
value to a string variable.
v Print the concatenated string.
Sample run of the program:
Enter five words: bird cat dog horse ox
Concatenated string is bircatdoghorox
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started