Skip to main content

Posts

Showing posts with the label 23. Write a C program to input basic salary of an employee and calculate its Gross salary according to following:

ads1

23. Write a C program to input basic salary of an employee and calculate its Gross salary according to following:

23 . Write a C program to input basic salary of an employee and calculate its Gross salary according to following: Basic Salary <= 10000 : HRA = 20%, DA = 80% Basic Salary <= 20000 : HRA = 25%, DA = 90% Basic Salary > 20000 : HRA = 30%, DA = 95%   Solution :-  #include<stdio.h> #include<conio.h> void main() {         clrscr();         float basic,gross,da,hra;         printf("Enter the Basic Salary :-");         scanf("%f",&basic);         if(basic <=10000)         {             da = basic *0.8;             hra = basic *0.2;         }         else if(basic <=20000)         {    ...

ads2