In C++ Create a function that fills one vector with even random 2 digit numbers
ID: 640417 • Letter: I
Question
In C++ Create a function that fills one vector with even random 2 digit numbers and another vector with odd random numbers. Prompt the user for the size of these vectors. Both will be the same size. Output the results where you ask the user how many columns to display. These should be done with 2 functions, fillVec and prntVec. Then do the same with a 2-Dim array where the first column has even numbers and the second column has the odd numbers.