Contact Learn C
Copy

Program 354: Calculate Gross Salary from given Basic Pay

Program 354: Calculate Gross Salary from given Basic Pay
 
#include<stdio.h>
main(){
 
  float basicPay,dearnessAllowance,houseRentAllowance,grossSalary,providentFund;
  printf("Enter Basic Pay \n"); 
  scanf("%f",&basicPay); 
  
  houseRentAllowance=0.2*basicPay; 
  dearnessAllowance=0.4*basicPay; 
  providentFund=0.12*basicPay;
  grossSalary=basicPay+dearnessAllowance+houseRentAllowance+providentFund; 
  
  printf("Basic Pay=%.2f\n",basicPay);
  printf("Dearness Allowance=%.2f\n",dearnessAllowance);
  printf("House Rent Allowance=%.2f\n",houseRentAllowance);
         printf("ProvidentFund=%.2f\n",providentFund);
  printf("Gross Salary=%.2f\n",grossSalary);
}
Explanation:

//Coming Soon

Output:



Calculate Gross Salary from given Basic Pay
Donate

Download App and Learn when ever you want

Get it on PlayStore
Get it on Amazon App Store
Get it on Aptoide