A global variable when referred to in another file is declared as this
a) local variable
b) external variable
c) constant
d) pointers
No Answer is Posted For this Question
Be the First to Post Answer
How does the assert() function work?
what is pointer
how to sort two array of characters and make a new array of characters.
What are pointers really good for, anyway?
How can I convert integers to binary or hexadecimal?
To find whether a number is even or odd without using any conditional operator??
12 Answers College School Exams Tests, IBM,
What is the exact difference between '\0' and ""
What is the return type of sizeof?
What is true about the following C Functions (a) Need not return any value (b) Should always return an integer (c) Should always return a float (d) Should always return more than one value
Where are local variables stored in c?
please explain every phase in the "SDLC" in the dotnet.
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.