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.
What will be the output of the following program #include<stdio.h> void main() { int i=20; i-=i+++++i++; printf("%d",i); }
What is volatile variable how do you declare it?
who is the father of C Language?
20 Answers CTS, UST,
hello everybody can we change a the adress of a variabl i mean can i put for exemple for a int *p: &p=6 ?????????
What are identifiers and keywords in c?
Design a program using an array that searches a number if it is found on the list of the given input numbers and locate its exact location in the list.
void main() { for(; 0 ;) ... { printf("hello"); ... } getch(); }
Is c easier than java?
int i; i=2; i++; if(i=4) { printf(i=4); } else { printf(i=3); } output of the program ?
what is the output of the below code? main( ) { printf ( "\nOnly stupids use C?" ) ; display( ) ; } display( ) { printf ( "\nFools too use C!" ) ; main( ) ; }
Explain how can I prevent another program from modifying part of a file that I am modifying?
Hi, main() { } Is a user defined function or Built in Functionn