Answer Posted / vinod
the variable which can be modify
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply
What is restrict keyword in c?
Is c procedural or object oriented?
What does %c do in c?
Tell me is null always defined as 0(zero)?
Explain the ternary tree?
How to draw the flowchart for structure programs?
How can a string be converted to a number?
What are all different types of pointers in c?
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 is the difference between north western polytechnique university and your applied colleges?? please give ur answers for this. :)
Can we declare variable anywhere in c?
What kind of structure is a house?
What does struct node * mean?
Can we replace the struct function in tree syntax with a union?