main()
{int a=200*200/100;
printf("%d",a);
}
Answer Posted / 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 |
Post New Answer View All Answers
What is the use of define in c?
Write a simple code fragment that will check if a number is positive or negative.
Why do we use return in c?
What is the method to save data in stack data structure type?
Explain bit masking in c?
What is an operator?
Why n++ execute faster than n+1 ?
Explain what is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?
What is the difference between pure virtual function and virtual function?
What is the purpose of & in scanf?
Write a program to print factorial of given number using recursion?
Explain what is gets() function?
How will you delete a node in DLL?
What is static memory allocation? Explain
What is uint8 in c?