Answers for "reverse array in c"

C
6

how to reverse array in python

a = [1,2,3,4]
a = a[::-1]
print(a)
>>> [4,3,2,1]
Posted by: Guest on March-06-2020
2

reverse an array in c++

#include <iostream>
using namespace std;
int main()
{		// While loop
	const int SIZE = 9;
	int arr [SIZE];
	cout << "Enter numbers: \n";
	for (int i = 0; i < SIZE; i++)
		cin >> arr[i];
	for (int i = 0; i < SIZE; i++)
		cout << arr[i] << "\t";
	cout << endl;
	cout << "Reversed Array:\n";
	int temp, start = 0, end = SIZE-1;
	while (start < end)
	{
		temp = arr[start];
		arr[start] = arr[end];
		arr[end] = temp;
		start++;
		end--;
	}
	for (int i = 0; i < SIZE; i++)
		cout << arr[i] << "\t";
	cout << endl;	
  	return 0;
}
Posted by: Guest on January-12-2021
1

reverse array in c

// arr is the array
// a is length of array
int j = a-1;
for(int i = 0; i<j; i++){
	arr[i]^=arr[j];
    arr[j]^=arr[i];
    arr[i]^=arr[j];
    j--;
}
Posted by: Guest on May-31-2021
1

how to reverse array in python

>>> L = [0,10,20,40]
>>> L[::-1]
[40, 20, 10, 0]
Posted by: Guest on March-06-2020
2

reverse string array java

import java.util.Arrays;
public class ReverseStringArrayInJava
{
   public static void main(String[] args)
   {
      String[] strHierarchy = new String[]{"Junior Developer","Senior Developer","Team Lead","Project Manager","Senior Manager","CEO"};
      System.out.println("Given string array: " + Arrays.toString(strHierarchy));
      for(int a = 0; a < strHierarchy.length / 2; a++)
      {
         String strTemp = strHierarchy[a];
         strHierarchy[a] = strHierarchy[strHierarchy.length - a - 1];
         strHierarchy[strHierarchy.length - a - 1] = strTemp;
      }
      System.out.println("Reversed string array: ");
      for(int a = 0; a < strHierarchy.length; a++)
      {
         System.out.println(strHierarchy[a]);
      }
   }
}
Posted by: Guest on November-07-2020

Code answers related to "C"

Browse Popular Code Answers by Language