English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
All categories

Please send its answer within 15 mintes i really need it.

2006-11-22 03:04:11 · 5 answers · asked by qasimonline36 1 in Computers & Internet Programming & Design

5 answers

The 15 minutes are over so no need for me to answer

2006-11-22 05:36:26 · answer #1 · answered by Smutty 3 · 0 0

You didn't tell us what programming langauge you are using and that is sort of important. If you are using Java you need to use a stack and the push/ pop method. Push all of the words into the stack and then pop them all off again. That will reverse thier order.

2006-11-22 11:08:19 · answer #2 · answered by Louis G 6 · 0 0

PHP: rsort($array);

2006-11-22 11:08:37 · answer #3 · answered by Isofarro 3 · 0 0

int newArrayIndex = 0 ;

for( int i = wordArray.Length-1; i >= 0 ; i-- )
{
newArray[ newArrayIndex ] = wordArray[ i ];
newArrayIndex++ ;
}

wordArray = newArray ;

2006-11-22 12:16:41 · answer #4 · answered by T A 2 · 0 0

in which compiler?

2006-11-22 11:10:12 · answer #5 · answered by Alexander 1 · 0 0

fedest.com, questions and answers