Create an output format statement which would generate lines in the table which
ID: 3660959 • Letter: C
Question
Create an output format statement which would generate lines in the table which appear as shown below. The Employee Name Field displays an employee name contained in thenamevariable. YYY displays an integer value from theagevariable which ranges from 1 thru 100 and should be right justified. XXXXX.XX displays a monetary value from thesalaryvariable which ranges from 0.01 to 99999.99 and should also be right justified. Use the variables shown below in your output statements.
Employee Name Field------YYY----$XXXXX.XX
char name[25]; int age; double salary;