Write a C++ program to move all negative elements of an array of integers to the end of the array without changing the order of positive element and negative element. Assume that the array elements are 'hard-coded' into your program (see the starter code). Write the pseudo code for this program and then implement it.
nclude <iostream> using namespace std; void moveNegative(int a[], int n) { int i = 0; while (i < n) { if (a[i] < 0) { a[i] = -a[i]; } i++; } } int main() { int a[] = { 1, 2, 3, 4, 5, 6, 7