Question: In C++. Thank you! Write a program that will prompt a manager for the salaries of his emplovees and let the manager know the effect

In C++. Thank you!
Write a program that will prompt a manager for the salaries of his emplovees and let the manager know the effect of giving each a 10% salary increase. Assume the manager has 6 employees. Use pointer notation (not array notation) In main(): Prompt the user for the 6 salaries, each number must be validated using a while loop as it can't be negative or 0, store these values in an array using pointer notation. . From main call a function that will increment each salary by 10% and store this in another array. From main call another function that will take both arrays, calculate the difference between the original and new salaries for each employee, sum this differential and display this. This function should also display the orginal salaries and the salaries with the 10% increase. Run 1: 50,000; 60,000; 65,000; 70,000, 55,000, 90,000; Run 2: 100,000; 105,000; 120,000; 150,000; 150,000; 185,000
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
