Online Courses
Free Tutorials  Go to Your University  Placement Preparation 
Best Products for Students
0 like 0 dislike
6.7k views
in GTU B.E. (CSE-I-Sem) Programming For Problem Solving Lab by Goeduhub's Expert (7.1k points)

Write a c program to prepare 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.

Goeduhub's Top Online Courses @Udemy

For Indian Students- INR 360/- || For International Students- $9.99/-

S.No.

Course Name

 Coupon

1.

Tensorflow 2 & Keras:Deep Learning & Artificial Intelligence || Labeled as Highest Rated Course by Udemy

Apply Coupon

2.

Complete Machine Learning & Data Science with Python| ML A-Z Apply Coupon

3.

Complete Python Programming from scratch | Python Projects Apply Coupon
    More Courses

1 Answer

0 like 0 dislike
by Goeduhub's Expert (7.1k points)
edited by
 
Best answer

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 :

Output of above program showing employee pay slip


For More GTU C Programming Lab Experiments Click Here

3.3k questions

7.1k answers

394 comments

4.6k users

Related questions

 Goeduhub:

About Us | Contact Us || Terms & Conditions | Privacy Policy || Youtube Channel || Telegram Channel © goeduhub.com Social::   |  | 
...