what is diff between localstatic and globalstatis variable
possible 2 use in another file...?
Answer Posted / guest
localstatic belong to that only that function .
globalestatic belong 2whole file. not possible.
| Is This Answer Correct ? | 6 Yes | 1 No |
Post New Answer View All Answers
Explain union.
Compare array data type to pointer data type
When should you not use a type cast?
What is a static variable in c?
What is an identifier?
Do you have any idea about the use of "auto" keyword?
Why ca not I do something like this?
Are global variables static in c?
What do the functions atoi(), itoa() and gcvt() do?
Explain what is a stream?
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.
How do you search data in a data file using random access method?
Why c is called a mid level programming language?
What is a substring in c?
What is fflush() function?