The program will first compute the tax you owe based on your income.
User is prompted to enter income.
Program will compute the total amount of tax owed based on the following:
Income Tax
0 - $45,000 = 0.15 x income
$45,001 - $90,000 = 6750 + 0.20 x (income – 45000)
$90,001 - $140,000 = 15750 + 0.26 x (income – 90000)
$140,001 - $200,000 = 28750 + 0.29 x (income – 140000)
Greater than $200,000 = 46150 + 0.33 x (income – 200000)
Dollar amounts should be in dollars and cents (float point numbers with two decimals shown).
Tax is displayed on the screen.


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

#define FALSE -1 #define TRUE 1 #define NULL 0 main() { if(NULL) puts("NULL"); else if(FALSE) puts("TRUE"); else puts("FALSE"); }

1 Answers  


Why the below program throughs error during compilation? #include<stdio.h> #include<conio.h> enum { ZERO, ONE, TWO, }; main() { printf("%d",&TWO); getch(); }

2 Answers  


What are inbuilt functions in c?

0 Answers  


What is pointers in c?

0 Answers  


What type is sizeof?

0 Answers  






Fifty minutes ago if it was four times as many mints past 3 o clock. how many minutes is it to six o'clock n how....?????

3 Answers   TCS,


What are structure types in C?

0 Answers  


what is function pointer?

2 Answers   Wipro,


coding for Fibonacci.?

1 Answers  


What is p in text message?

0 Answers  


What is #include stdlib h?

0 Answers  


wat are the two methods for swapping two numbers without using temp variable??

2 Answers  


Categories