Question: C++: Find the union and intersection of two arrays. Program should have a separate function for union and intersection. Take input from file in an
C++: Find the union and intersection of two arrays. Program should have a separate function for union and intersection. Take input from file in an array. eg: arr_1: 1 2 3 4 5 6 7 8 9 is in file.txt eg: arr_2: 3 5 6 1 8 9 10 11 is in file_2.txt
Output: Union: 1 2 3 4 5 6 7 8 9 10 11 union.txt Intersection: 3 5 6 1 8 9 intersection.txt Use only conditions, loops, user defined functions and arrays
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
