Answer Posted / thanigaivel.s
Intialize the Variable or Array memory at the run time of
Code .
Is This Answer Correct ? | 5 Yes | 1 No |
Post New Answer View All Answers
Explain how can you determine the size of an allocated portion of memory?
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.
Why is it that not all header files are declared in every C program?
explain how do you use macro?
Can main () be called recursively?
What are run-time errors?
What is structure padding in c?
What is the ANSI C Standard?
Why do we need functions in c?
What is the difference between malloc() and calloc() function in c language?
What are external variables in c?
What is a floating point in c?
Do you know pointer in c?
about c language
How can you determine the maximum value that a numeric variable can hold?