Problem
The function prototype of function computeTaXNet that receives the gross pay of an individual and computes his tax deduction and net pay is given as follows: void computeTaxNet( double gpay, double &taxd, double &netp);
1) Write the sequence of statements to compute and print the tax deduction and the net pay of an individual with gross pay 3000.00 by calling function computeTaXNet.
2) Write the sequence of statements to read the gross pay of an individual and to compute and print his tax deduction and the net pay by calling function computeTaxNet.