The following code does not compile - I need to enter the array size via the keyboard for both a string and int array. The number you enter must apply to both arrays, string and int. ANY idea on how to fix - Newbie?
The number you enter must apply to both arrays, string and int. ANY idea on how to fix
Assuming you can't use std::vector you must use dynamic memory (new/delete) to allocate the memory for the arrays after you get the size from the user.