*** Problem 3, Module 7, ETEC128 *************************************************************************** Last name:
Posted: Thu Jul 14, 2022 2:27 pm
*** Problem 3, Module 7, ETEC128
***************************************************************************
Lastname: Firstname: ID: Sec:
***************************************************************************
The name, ID and section number that appear at the beginning ofthe
output of the program should be your own, not the ones used inthe sample
Arrays:
Write a program in C to read 3 number of values in an array anddisplay it in reverse order.
Test Data
Input 3 number of elements in the array :
element - 0 : 2
element - 1 : 5
element - 2 : 7
--- Your output should be like this (with your own ID andname): --------
***********************************************************************
My name: Smith,Peter My ID: 300999999 My section: 61
***********************************************************************
Input 3 number of elements in the array :
2
5
7
The values store into the array are :
2 5 7
The values store into the array in reverse are :
7 5 2
***************************************************************************
Lastname: Firstname: ID: Sec:
***************************************************************************
The name, ID and section number that appear at the beginning ofthe
output of the program should be your own, not the ones used inthe sample
Arrays:
Write a program in C to read 3 number of values in an array anddisplay it in reverse order.
Test Data
Input 3 number of elements in the array :
element - 0 : 2
element - 1 : 5
element - 2 : 7
--- Your output should be like this (with your own ID andname): --------
***********************************************************************
My name: Smith,Peter My ID: 300999999 My section: 61
***********************************************************************
Input 3 number of elements in the array :
2
5
7
The values store into the array are :
2 5 7
The values store into the array in reverse are :
7 5 2