Answer Posted / prajeesha.k
alt+f8
| Is This Answer Correct ? | 2 Yes | 15 No |
Post New Answer View All Answers
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.
How can I write functions that take a variable number of arguments?
What is difference between array and structure in c?
void main(){ int a; a=1; while(a-->=1) while(a-->=0); printf("%d",a); }
What are comments and how do you insert it in a C program?
What should malloc() do? Return a null pointer or a pointer to 0 bytes?
What are the __date__ and __time__ preprocessor commands?
Why is structure important for a child?
Tell us bitwise shift operators?
What is the use of ?
What is a sequential access file?
Explain the difference between the local variable and global variable in c?
can we implement multi-threads in c.
What is const and volatile in c?
How are 16- and 32-bit numbers stored?