Search
 
SCRIPT & CODE EXAMPLE
 

CPP

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;
}
Comment

reverse function in cpp array

// C++ program to reverse Array
// using reverse() in STL
 
#include <algorithm>
#include <iostream>
using namespace std;
 
int main()
{
    // Get the array
    int arr[] = { 1, 45, 54, 71, 76, 12 };
 
    // Compute the sizes
    int n = sizeof(arr) / sizeof(arr[0]);
 
    // Print the array
    cout << "Array: ";
    for (int i = 0; i < n; i++)
        cout << arr[i] << " ";
 
    // Reverse the array
    reverse(arr, arr + n);
 
    // Print the reversed array
    cout << "
Reversed Array: ";
    for (int i = 0; i < n; i++)
        cout << arr[i] << " ";
    return 0;
}
Comment

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/
Comment

PREVIOUS NEXT
Code Example
Cpp :: number of digits in int c++ 
Cpp :: methods available for a stl vector 
Cpp :: unique_ptr syntax 
Cpp :: function in c++ 
Cpp :: getline(cin string) not working 
Cpp :: cpp mutex 
Cpp :: cpp func as const 
Cpp :: integer range in c++ 
Cpp :: power function c++ 
Cpp :: remove first occurrence of value from vector c++ 
Cpp :: find in vector 
Cpp :: Convert a hexadecimal number into decimal c++ 
Cpp :: sort vector c++ 
Cpp :: c plus plus 
Cpp :: use of alphanumeric function c++, check if alphabet or digit from string 
Cpp :: c++ saying hello world 
Cpp :: c++ switch statement 
Cpp :: convert char to int c++ 
Cpp :: c++ class template 
Cpp :: toupper c++ 
Cpp :: char to int in c++ 
Cpp :: lower bound and upper bound in c++ 
Cpp :: c++ find index of element in array 
Cpp :: how to change the value of a key in hashmp in c++ 
Cpp :: 1768. Merge Strings Alternately leetcode solution in c++ 
Cpp :: What is a ~ in c++ 
Cpp :: intlen in c++ 
Cpp :: Basic Input / Output in C++ 
Cpp :: if else in c++ 
Cpp :: Split a number and store it in vector 
ADD CONTENT
Topic
Content
Source link
Name
5+5 =