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
What does 1f stand for?
What does void main return?
if p is a string contained in a string?
What is getch () for?
Explain how do you print an address?
Why is c platform dependent?
What is variable and explain rules to declare variable in c?
What is dynamic memory allocation?
What is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?
What are the differences between new and malloc in C?
What are runtime error?
What is return type in c?
Write a program that takes a 5 digit number and calculates 2 power that number and prints it(should not use big integers and exponential functions)
What is chain pointer in c?
Explain the use of 'auto' keyword