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 |
Can true be a variable name in c?
what is the difference between structure and union?
Is malloc memset faster than calloc?
What is keyword with example?
define string ?
A global variable when referred to in another file is declared as this a) local variable b) external variable c) constant d) pointers
Write a program to accept a character & display its corrosponding ASCII value & vice versa?
Explain how are portions of a program disabled in demo versions?
Write a code to remove duplicates in a string.
What does main () mean in c?
What do you mean by c what are the main characteristics of c language?
the maximum width of a c variable name can be a) 6 characters b) 8 characters c) 10 characters d) 20 characters