Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


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

what do you mean by enumeration constant?

0 Answers  


Program to simulate second clock

2 Answers  


A B C D E F G F E D C B A A B C D E F F E D C B A A B C D E E D C B A A B C D D C B A A B C C B A A B B A A A

2 Answers  


#include main() { int i=1,j=2; switch(i) { case 1: printf("GOOD"); break; case j: printf("BAD"); break; } }

6 Answers   ME,


How can you find the day of the week given the date?

0 Answers  


what is the purpose of the following code, and is there any problem with the code? void fn(long* p1, long* p2) { register int x = *p1; register int y = *p2; x ^= y; y ^= x; x ^= y; *p1 = x; *p2 = y; }

1 Answers   Google,


What are identifiers in c?

0 Answers  


Main must be written as a.the first function in the program b.Second function in the program c.Last function in the program d.any where in the program

19 Answers   CTS, HCL, TCS,


suppose there are five integers write a program to find larger among them without using if- else

2 Answers  


Do string constants represent numerical values?

0 Answers  


what are bit fields in c?

2 Answers  


how to make program without <> in libray.

0 Answers  


Categories