j

Tuesday, 3 November 2015

write a program, A company pays 10% tax on his monthly income, get per month income of company and calculate its yearly income after deducting annual tax.



#include<stdio.h>
#include<conio.h>
void main()
{
clrscr();
long int per_month,yearly,tax;
printf("Enter your per month income ::");
scanf("%ld",&per_month);
tax=per_month*10/100;
per_month=per_month-tax;
yearly=per_month*12;
printf("Your monthly income after deducting annual tax is %ld",yearly);
getch();
}

Subscribe to this Blog via Email :