Answer Posted / manish soni tagore collage jai
size of integer is
sizeof(int);
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
how to execute a program using if else condition and the output should enter number and the number is odd only...
Explain why can’t constant values be used to define an array’s initial size?
What is the difference between %d and %i?
What is the difference between the local variable and global variable in c?
What are the types of type specifiers?
What is difference between union and structure in c?
What does %d do in c?
How do I use void main?
Explain how can you be sure that a program follows the ansi c standard?
What is a good way to implement complex numbers in c?
Is c dynamically typed?
What is volatile keyword in c?
Explain what is the difference between functions abs() and fabs()?
What is function in c with example?
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.