c++ program to reverse an array
#include<iostream>
using namespace std;
int main()
{
int a[]={1,2,3,4,5}; // Using Pointer and Array Relationship
for (int i = 4; i>=0; i--)
cout<<*(a+i);
return 0;
}
c++ program to reverse an array
#include<iostream>
using namespace std;
int main()
{
int a[]={1,2,3,4,5}; // Using Pointer and Array Relationship
for (int i = 4; i>=0; i--)
cout<<*(a+i);
return 0;
}
reverse an array in c++ stl
//Reverse an array using C++ STL
#include <algorithm> //Header file for reverse method
int arr[] = { 1, 2, 3, 4, 5 };
int n = sizeof(arr) / sizeof(arr[0]); //Size of array
reverse(arr, arr + n);
//Now array looks like = { 5, 4, 3, 2, 1 }
//The time complexity is O(n)
//https://www.linkedin.com/in/kalyan-santra-44589a126/
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us