Answer Posted / prasannanjaneyulu.kandimalla
a=5;
a=a++/++a;
in that numerator is 5 and denominator is 6(finally a value
is:6)
so a=6/6=1
finally a is postincremented so it is2(1+1)
| Is This Answer Correct ? | 17 Yes | 4 No |
Post New Answer View All Answers
If I have a char * variable pointing to the name of a function ..
How is null defined in c?
How can I sort more data than will fit in memory?
What is printf () in c?
What is pass by reference in functions?
What is the difference between exit() and _exit() function?
Why calloc is better than malloc?
Explain the meaning of keyword 'extern' in a function declaration.
What is the size of structure in c?
Explain how do you declare an array that will hold more than 64kb of data?
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.
When the macros gets expanded?
If the size of int data type is two bytes, what is the range of signed int data type?
Does * p ++ increment p or what it points to?
Explain what are header files and explain what are its uses in c programming?