Demonstrate an understanding of C++ programming concepts by completing the following:Program: Create a C++ program that will function as an Employee Salary Calculator. Obtain from the user:Double variables forStandard Hours workedRate of PayOvertime Hours (if applicable)Calculate appropriate pay for standard hours and overtime (1.5 x rate of pay).Provide formatted output using the following methodssetw()setprecision()Store the values into three different variables. For each variable, create three integer pointers that point to each values. Display the contents of the variables and pointers. In your program, be sure to use the new operator and delete operators to manage dynamic memory.Program Analysis: Given your program implementation, discuss and identify the possible security vulnerabilities that may exist. If present, discuss solutions to minimize the vulnerabilities. Discuss and identify possible problems that can result in errors when using formatted output.