#include<stdio.h>
#include<math.h>
int main()
{
float BS,DA,HRA,Net_salary;
printf(“Enter the basic salary of the employee\n”);
scanf(“%f”,&BS);
DA=0.25*BS; // 25 percent of the basic salary
HRA=0.15*BS; // 15 percent of the basic salary
Net_salary=BS-(0.10*(BS+DA+HRA));
printf(“The net salary of the employee is: %f”,Net_salary);
return 0;
}
Output:
Enter the basic salary of the employee
500
The net salary of the employee is: 430.00000