Can anybody help to WAP to arrange the elements of array where all positive integers appear before negative integers.

2 answers

In VBA pls
one easy way is to create two new arrays, then scan the original array, placing positive values into one, and negative values into the other.
Then join the two arrays into one new array.

google can help you find VBA code snippets to perform these tasks.