WAP to accept basic salary of an employee?
Calculate it HRA=25%,DA=30%,PF=30%&net salary display all
contents?
Answer Posted / 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 |
Post New Answer View All Answers
How can I do graphics in c?
What are the application of void data type in c?
Explain how can I open a file so that other programs can update it at the same time?
Where is c used?
How many types of sorting are there in c?
What is indirection?
Explain how does free() know explain how much memory to release?
Explain how can I make sure that my program is the only one accessing a file?
Is it better to use malloc() or calloc()?
What is typedef?
What are different storage class specifiers in c?
Why enum is used in c?
What do you mean by dynamic memory allocation in c?
How can I call fortran?
Can a pointer be null?