Please Use c++ language.
Task :
Create a program that will compare to unsorted integer arrays of varying length.
Compare the two arrays placing the unique integers which occur in each individual array into new array called unique.
Unique values are integers that appear in the a single array but not both.
For Example
int array1[] = {12, 4, 5, 19, 25, 100}
int array2[] = {908, 12, 19, 205, 4, 100, 6}
Output =
int unique[] = {908,5 25, 205,6}