Answer Posted / tom the frog
Just stating the obvious:
T, E, T
Given that they are the first letters of the positive integers.
| Is This Answer Correct ? | 8 Yes | 0 No |
Post New Answer View All Answers
What is the default value of local and global variables in c?
Why does the call char scanf work?
How does #define work?
An integer that indentifies the position of a data item in a sequence of data items a) value b) number c) index d) all of the above
How to declare pointer variables?
How many keywords (reserve words) are in c?
What are multibyte characters?
Difference between exit() and _exit() function?
what is the differnce between programing langauge and tool? is sas is a programing langauge r tool?
What is a void * in c?
How can I find the modification date of a file?
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 are different storage class specifiers in c?
Explain what is the purpose of "extern" keyword in a function declaration?
What is the use of function overloading in C?