main()
{int a=200*200/100;
printf("%d",a);
}
Answers were Sorted based on User's Feedback
Answer / dally
200*200/100
here both *,% contained same priority and also left->right
shift so the excusion will start from left->right so answer is
400.
| Is This Answer Correct ? | 4 Yes | 8 No |
Answer / rukmanee
int a=200*200/100;
=200*2;
=400;
the value of a=400
| Is This Answer Correct ? | 1 Yes | 7 No |
Who developed c language?
Who invented bcpl language?
What is Dynamic Initialization.
What is a good data structure to use for storing lines of text?
How can I make sure that my program is the only one accessing a file?
EXPLAIN #INCLUDE<STDIO.H> EXPLAIN #INCLUDE<CONIO.H>
Give a one-line C expression to test whether a number is a power of 2. [No loops allowed - it's a simple test.]
Explain 'bus error'?
What is the use of pragma in embedded c?
Write a program to print distinct words in an input along with their count in input in decreasing order of their count
What is binary tree in c?
int x=5; printf("%d%d%d",x,x<<2,x>>2);