Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

create an output format statement which would generate lines in the table which

ID: 3639408 • 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 the name variable. YYY displays an integer value from the age variable which ranges from 1 thru 100 and should be right justified. XXXXX.XX displays a monetary value from the salary variable 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;

Explanation / Answer

int main() { char name[25]; int age; double salary; cout