Answered step by step
Verified Expert Solution
Question
1 Approved Answer
You need to write a function named doubleDupe. The function is described below: doubleDupe: : takes an int array and the array's size as arguments.
You need to write a function named doubleDupe. The function is described below: doubleDupe: : takes an int array and the array's size as arguments. The function should create a new array that is twice as big as the argument array. The new array should contain two copies of the original array, both in the original order. The function should return a pointer to the new array. Note: If a negative integer is passed as a parameter instead of the array's size, the function should return NULL (or nullptr). Use the main function to demonstrate your function. Assume the input will be a sequence of numbers, the first number will be the size of an array, followed by the elements of the array. Input the values in the array and call doubleDupe on it. Output the resultant array of the call doubleDupe. Ex.: If the input is 4234 the output should be 12341234 If the input is 842716385 the output should be 4271638542716385
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