Practice Question
Practice Question
Test Data :
element - 0 : 1
element - 1 : 1
element - 2 : 2
.......
Expected Output :
2.Write a program in C to read n number of values in an array and display it in reverse order.
Test Data :
element - 0 : 2
element - 1 : 5
element - 2 : 7
Expected Output :
257
752
3.Write a program in C to find the sum of all elements of the array
Test Data :
element - 0 : 2
element - 1 : 5
element - 2 : 8
Expected Output :