Write a program to print elements of an array in reverse order

Write a program to print elements of an array in reverse order

Print Elements of an Array in Reverse Order Object: Write a program to print elements of an array in reverse order. C++ projects for beginners with source code Code: #include<iostream> #include<conio.h> using namespace std; void main() { int num[5],i; cout<<“Enter 5 Numbers.\n”; for(i=0;i<5;i++) { cin>>num[i]; } cout<<“Array in Original form.\n”; for(i=0;i<5;i++) { cout<<num[i]<<” “; } …

Write a program to print elements of an array in reverse order Read More »