which operator having lowest precedence??
a.)+ b.)++ c.)= d.)%

Answer Posted / sivasiva

+

Is This Answer Correct ?    2 Yes 3 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Why dont c comments nest?

621


What does double pointer mean in c?

582


What is c language & why it is used?

582


How can you convert integers to binary or hexadecimal?

616


write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.

3501






What's the difference between constant char *p and char * constant p?

657


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.

1065


how to count no of words,characters,lines in a paragraph.

3905


Why shouldn’t I start variable names with underscores?

625


Which is better pointer or array?

597


How do I get an accurate error status return from system on ms-dos?

649


Explain function?

665


How can I do serial ("comm") port I/O?

689


in case any function return float value we must declare a) the function must be declared as 'float' in main() as well b) the function automatically returned float values c) function before declared 'float' keyword d) all the above

600


What is stack in c?

615