Pay Slip Generatiion
In this program we are going to generate a pay slip using following data
Da = 10% of basic, Hra = 7.50% of basic, Ma = 300,
Pf = 12.50% of basic, Gross = basic + Da + Hra + Ma, Nt = Gross – Pf.
Example :
#include<stdio.h> #include<conio.h> void main() { float basic,da,hra,ma=300,pf,gross,nt; clrscr(); printf("\nEnter basic income of the employee:"); scanf("%f",&basic); da=(0.1)*basic; hra=(7.5/100)*basic; pf=(12.50/100)*basic; gross=basic+da+hra+ma; nt=gross-pf; printf("\n da = %.2f hra = %.2f ma = 300 pf = %.2f gross = %.2f\n Nt = %.2f",da,hra,pf,gross,nt); getch(); } |
Output :

For More GTU C Programming Lab Experiments Click Here