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...

/*program to calculate hra,da in salary if salary less than
10000 then hra15%,da13% otherwise hra20%,da18%/*

Answer Posted / riteshvk007

#include<stdio.h>
#include<conio.h>
void main()
{
int bs,da,hra;
clrscr();
printf("\n enter the basic salary of employee");
scanf("%d",&bs);
if (bs>10000)
{
printf("\n da : %d",da=bs*15/100);
printf("\n hra : %d",hra=bs*13/100);
printf("\n net salary: %d",da+hra);
}
else
{
printf("\n da : %d",da=bs*20/100);
printf("\n hra : %d",hra=bs*18/100);
printf("\n net salary: %d",da+hra);
}
getch();
}

plese cheackout mistakes i can't run successfully this program

Is This Answer Correct ?    16 Yes 4 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Is r written in c?

1162


Write a program to print “hello world” without using semicolon?

1127


How many levels of pointers can you have?

1201


What is typedef example?

1197


Find duplicates in a file containing 6 digit number (like uid) in O (n) time.

3250


Is it fine to write void main () or main () in c?

1033


What does. int *x[](); means ?

1074


What is null pointer in c?

1002


i want to know the procedure of qualcomm for getting a job through offcampus

2476


What language is c written?

1058


Write the test cases for checking a variable having value in range -10.0 to +10.0?

2322


What is dynamic dispatch in c++?

1069


In c programming, explain how do you insert quote characters (? And ?) Into the output screen?

1252


Why is c so popular?

1166


What is structure padding and packing in c?

1077