-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Description
struct Employee {
int emp_id; // Unique employee ID
char name[50]; // Employee name
float basic_salary; // Basic salary amount
float tax; // Tax deducted
float net_salary; // Net salary after tax
};
Explanation of fields:
struct Employee {
int emp_id; // Unique employee ID
char name[50]; // Employee name
float basic_salary; // Basic salary amount
float tax; // Tax deducted
float net_salary; // Net salary after tax
};
Explanation of fields:
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels