main()
{ int i;
printf("%d",((i=1)*i-- - --i*(i=-3)*i++ + ++i));
}
ans is 24 bt how?pls tell smbody............
Answer Posted / rama krishna sidhartha
Actually answer is not 24 it is -7567. When i executed this
in the turbo c compiler i got the answer like that.
| Is This Answer Correct ? | 0 Yes | 2 No |
Post New Answer View All Answers
What does c value mean?
Explain zero based addressing.
What does %2f mean in c?
What is page thrashing?
What is the difference between a function and a method in c?
Why is c platform dependent?
#include
Is javascript written in c?
What is the return type of sizeof?
What is the size of structure pointer 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 structure in c definition?
Give me the code of in-order recursive and non-recursive.
5 Write an Algorithm to find the maximum and minimum items in a set of ‘n’ element.
What does sizeof int return?