Question: Sample Runs ( Program Behavior ) User in put is in bold: Test 1 > run Enter the size of your list: - 4 Enter
Sample Runs Program Behavior
User in put is in bold:
Test
run
Enter the size of your list:
Enter a positive size. Try again.
Enter the size of your list:
Enter a positive size. Try again.
Enter the size of your list:
Enter a positive size. Try again.
Enter the size of your list:
Enter the value to store at index #:
You entered the list:
The minimum value in the list is
Test
run
Enter the size of your list:
Enter the value to store at index #:
You entered the list:
The minimum value in the list is
Test
run
Enter the size of your list:
Enter the value to store at index #:
Enter the value to store at index #:
You entered the list:
The minimum value in the list is
Test
run
Enter the size of your list:
Enter the value to store at index #:
Enter the value to store at index #:
You entered the list:
The minimum value in the list is
Test
run
Enter the size of your list:
Enter the value to store at index #:
Enter the value to store at index #:
Enter the value to store at index #:
You entered the list:
The minimum value in the list is
Test
run
Enter the size of your list:
Enter the value to store at index #:
Enter the value to store at index #:
Enter the value to store at index #:
You entered the list:
The minimum value in the list is
Test
run
Enter the size of your list:
Enter the value to store at index #:
Enter the value to store at index #:
Enter the value to store at index #:
You entered the list:
The minimum value in the list is
Test
run
Enter the size of your list:
Enter the value to store at index #:
Enter the value to store at index #:
Enter the value to store at index #:
Enter the value to store at index #:
Enter the value to store at index #:
Enter the value to store at index #:
Enter the value to store at index #:
Enter the value to store at index #:
Enter the value to store at index #:
Enter the value to store at index #:
You entered the list:
The minimum value in the list is
Programming Instructions
Your solution will be graded based upon program behavior passing tests Your solution will not receive full credit or receives no credit if you fail to follow these restrictions:
Your program must compile and run. Otherwise it will receive a zero.
Add your solution to the provided code template.
Do NOT use vectors in your solution.
You must use a pointer variable and dynamic memory allocation in the function main.
Do NOT use explicitly defined pointer variables using the operator when passing arrays to functions. Use square brackets.
Use descriptive variable names. Avoid too short variable names, especially single letter variable names.
DO NOT start a variable name with a capital letter.
DO NOT use explicit type casting. Instead use coercion see lecture notes
DO NOT unnecessarily use parenthesis in an expression, eg an equation or formula. Parenthesis should only be used for grouping portions of an expression to change operator precedence order. For example, parenthesis are unnecessary in the expression a b c Instead use a b c Parenthesis are necessary in the expression a b c
DO NOT use the break and continue statements in your solution.
Your program must be readable including indenting, spaces, and avoid lines that are too long. Use the the sample programs in the lecture notes as a guide.
Comment your program. Read the document at the "Lecture" link on Carmen under ModulesCommenting Your Program Commenting your program. DO NOT comment every line.
Only use C statements presented in the course. I.e statements and notation presented in the lecture notes and
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
