WAP to accept basic salary of an employee?
Calculate it HRA=25%,DA=30%,PF=30%&net salary display all
contents?

Answers were Sorted based on User's Feedback



WAP to accept basic salary of an employee? Calculate it HRA=25%,DA=30%,PF=30%&net salary displa..

Answer / don

#include<stdio.h>
void main()
{
long int bs,da,hra,pf;
printf("\nEnter The Basic Salary of Employee: ");
scanf("%d",&bs);
printf("\nDA : %d",da=bs*30/100);
printf("\nHRA : %d",hra=bs*25/100);
printf("\nPF : %d",pf=bs*30/100);
printf("\nNet Salary: %d",da+hra+pf);
}

Hey frnds pls tell me is it a ryt answer or wrong?
Help me out

Is This Answer Correct ?    49 Yes 26 No

WAP to accept basic salary of an employee? Calculate it HRA=25%,DA=30%,PF=30%&net salary displa..

Answer / sanjay

IF UR BASIC SALARY 5000 RS.
HRA=B*25/100;
HRA=1250;
DA=BS*30/100;
DA=1500;
PF=BS*30/100;
PF=1500;
NET SALARY=HRA+DA+PF+BS;
NET SALARY=1250+1500+1500+5000;
NET SALARY= 9250 RS.
THIS IS MY CORRECT ANSWER

Is This Answer Correct ?    27 Yes 17 No

WAP to accept basic salary of an employee? Calculate it HRA=25%,DA=30%,PF=30%&net salary displa..

Answer / yarmia anuj kalundia

the program does not yield proper result, cos long int is
used and then only "%d", instead just use "%ld" like i did
in following
"#include<stdio.h>
void main()
{
long int bs,da,hra,pf;
printf("\nEnter The Basic Salary of Employee: ");
scanf("%ld",&bs);
printf("\nDA : %ld",da=bs*30/100);
printf("\nHRA : %ld",hra=bs*25/100);
printf("\nPF : %ld",pf=bs*30/100);
printf("\nNet Salary: %ld",da+hra+pf);
}

Is This Answer Correct ?    20 Yes 17 No

WAP to accept basic salary of an employee? Calculate it HRA=25%,DA=30%,PF=30%&net salary displa..

Answer / balachander

wrong

Is This Answer Correct ?    8 Yes 7 No

WAP to accept basic salary of an employee? Calculate it HRA=25%,DA=30%,PF=30%&net salary displa..

Answer / salim kumar a.p.

My question is that, my salary is Rs. 12,000/-. In my
salary, How can calculate the Basic, DA, HRA and other
conveyance allowancs. This is for the PF. Please send the
detaisl and examples to me at the earleist. Hope for the
same.

Thanks

Salim Kumar A.P.

Is This Answer Correct ?    10 Yes 10 No

WAP to accept basic salary of an employee? Calculate it HRA=25%,DA=30%,PF=30%&net salary displa..

Answer / brijesh

jst add basic into net salary with da n hra n pf

Is This Answer Correct ?    4 Yes 10 No

Post New Answer

More C Interview Questions

for questions 14,15,16,17 use the following alternatives:a.int b.char.c.string.d.float

1 Answers  


What is the proper way of these job Tell me about there full work

0 Answers   EDS,


How do I get an accurate error status return from system on ms-dos?

0 Answers  


what is void pointer?

1 Answers   Wipro,


Write a C++ program to give the number of days in each month according to what the user entered. example: the user enters June the program must count number of days from January up to June

0 Answers  






When should we use pointers in a c program?

0 Answers  


what is an array

5 Answers  


write a program that explain #define and # undef directive

1 Answers  


list the no of files created when c source file is compiled

9 Answers   TCS,


If the size of int data type is two bytes, what is the range of signed int data type?

0 Answers  


how to write optimum code to divide a 50 digit number with a 25 digit number??

0 Answers   MGM,


In C, What is the #line used for?

2 Answers  


Categories