answersLogoWhite

0


Best Answer

do something like this

char[] myArr = {'a','b'};

StringBuilder sb = new StringBuilder();

sb.reverse();

char[] charArr = sb.toString().toCharArray();

or something like this

char[] charArr = new char[myarr.length];

for (int i=myarr.length-1,j=0;i>=0;i++,j++){

charArr[j] = myarr[i];

}

User Avatar

Wiki User

13y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

8y ago

When copying a sequence of elements, we need to know three pieces of information: where the sequence begins, where it ends and where to place the copies. To define a range within an array we typically specify the start address and the count of elements in the sequence. This creates a half-closed range because, in a given range of n elements starting at address a, the address a+n is one-past-the-end of the sequence. This is important to remember because, if we want to reverse the sequence, the sequence will be off-by-one.

In C, we can efficiently reverse an array with the following function:

void reverse (int src[], unsigned size, int dst[]) {

int* p = src + size;

while (p != src) *dst++ = *--p;

}

Note that dst must be at least as long as size. We do not test for this as there's no way to test that src is at least as long as size, let alone if dst is. So there's no point in even trying; error-checking is the responsibility of the caller. If you need range-checked arrays then C is not the language for you.

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Write a program to copy the contents of one array into another in the reverse order?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How do you write a program that outputs a given characters in reverse?

write the javascript code to display the reverse no. of given no. (e.g. 247 reverse of 742)


Write a program to implement the various operations on string such as length of string concatenation reverse of a string copy of a string to another in VB?

what is string


How do you Write a C program to reverse an Integer number.?

Reference:cprogramming-bd.com/c_page2.aspx# reverse number


Write the program in Linux to find the reverse of any string?

i am sam


Write a program to read your name and reverse it using arrays?

abdulrahman


Write a c program on reverse the diagonal element of matrix?

mano ni anda yarrr


How do I write a program to do the following... Write a VBA code to take the TippingBucketData.txt file and process it to generate an output file.?

Without knowing the contents of the TippingBucketData.txt file nor how to process it, it would be impossible to say how such a program would be written.


Write a program to list the contents of directory subdirectory?

mere ko batao yaar mere ko to khud ko ne pta


Why does a computer do a mini dump?

Usually, a 'mini-dump' occurs when a computer encounters an error in a program. This causes the computer to write the contents of the memory to disc. This is so the user can (if they wish) report the error and forward the contents of the mini-dump to the program vendor - so their technical team can see what happened, and if necessary re-write the software to cure the problem.


How do you Write a program in 'c' language which accepts int numbers from the users print its reverse number x function which return value?

question clarity


How to write a program in python to print the reverse of a number?

In python, type the following into a document. NOTE: Sentences following a # symbol are comments, and are not necessary for the program to run. #!/usr/bin/python #This program takes a input from a user and reverses it. number = input("Type a number: ") #This takes input from a user. a = len(number) #This finds the length of the number reverse = "" #This sets the variable reverse to an empty string. for i in number: a = a-1 #The places in a string start from 0. The last value will be the length minus 1.reverse = reverse + number[a] #Makes the number's last digit the new string's first. print("The reverse of", number, "is", reverse + ".") #prints the resulting string. This program will take any sequence of characters and reverse them. The final value is a string, but if an integer is needed, one needs only to add the line reverse = int(reverse) above the print statement. However, this will stop the program from being able to reverse strings, as it is not possible to convert a string to an integer if it is not a number.


How do you make a Hindi project for 8 class?

first take a paper then write (subject) project then below that make a little big column and write your name , class, teacher's name of that subject ,and your school name. then take another paper and write the contents then take another paper and write the introduction then write the topic which you are going to write about; then at last take another paper and write its conclusion.you can use it in any class , not only 8th.....