main()
{int a=200*200/100;
printf("%d",a);
}
Answer Posted / xxxxxxx
among '* ','/' arithematic operators / has a higher
precedence.so 200/100 is enclosed in brackets and multiplied
with 200
so a=200*(200/100)=200*2=400
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
Tell me the use of bit field in c language?
Explain how do you determine the length of a string value that was stored in a variable?
What are the features of c languages?
What is .obj file in c?
general for is %wd,f-d; in this system "w" means a) 'w' represent total width of digits b) 'w' represent width which includes the digits before,after decimal place and the decimal point c) 'w' represent width which includes the digits before only d) 'w' represent width after decimal place only
How to Throw some light on the splay trees?
When reallocating memory if any other pointers point into the same piece of memory do you have to readjust these other pointers or do they get readjusted automatically?
What is the difference between struct and union in C?
What is zero based addressing?
What is the advantage of an array over individual variables?
Lists the benefits of c programming language?
How are Structure passing and returning implemented by the complier?
Explain what are the advantages and disadvantages of a heap?
Is it possible to have a function as a parameter in another function?
Explain the difference between strcpy() and memcpy() function?