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

Write a program which take a integer from user and tell whether the given variable is squar of some number or not. eg: is this number is 1,4,9,16... or not

9 Answers   Alcatel,


What is the difference between struct and union in C?

1 Answers  


main() { char x; while(x=0;x<=255;x++) printf("\nAscii value %d Charater %c",x,x); }

2 Answers  


Explain what is the difference between #include and #include 'file' ?

0 Answers  


What is a void pointer in c?

0 Answers  


Differentiate between calloc and malloc.

0 Answers   Wipro,


Why is struct padding needed?

0 Answers  


Sir,please help me out with the output of this programme:- #include<stdio.h> #include<conio.h> void main() { int a=18,b=12,i; for(i=a<b?a:b;a%i||b%i;i--); printf("%d %d",i); }

4 Answers  


How can I allocate arrays or structures bigger than 64K?

5 Answers  


main() { enum _tag{ left=10, right, front=100, back}; printf("%d, %d, %d, %d", left, right, front, back); }

1 Answers   Accenture, Vector,


write a c program to find largest of three numbers using simple if only for one time.

1 Answers  


Why is the code below functioning. According to me it MUST NOT.

1 Answers  


Categories