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 size of structure in c?
a way in which a pointer stores the address of a pointer which stores the value of the target value a) reference b) allocation c) multiple indirection d) none
What is the value of h?
What is a void * in c?
What is derived datatype in c?
In c programming typeing to occupy the variables in memory space. if not useing the variable the memory space is wasted.ok, how to avoid the situation..? (the variable is used & notused)
What is Dynamic memory allocation in C? Name the dynamic allocation functions.
Explain how do you search data in a data file using random access method?
What is the difference between declaring a variable by constant keyword and #define ing that variable?
What are type modifiers in c?
What is line in c preprocessor?
An instruction which is analysed and acted upon by the processor prior to the compiler going its work a) directive b) constructive c) constant d) absolute mode
How do you generate random numbers in C?
How can I remove the trailing spaces from a string?
Explain heap and queue.