What is operator precedence?
No Answer is Posted For this Question
Be the First to Post Answer
What is nested structure in c?
Is array name a pointer?
Who invented bcpl language?
yogesh patil in dell
what is differnence b/w macro & functions
what are the 10 different models of writing an addition program in C language?
How are Structure passing and returning implemented by the complier?
Is it better to bitshift a value than to multiply by 2?
How to print %d in output
Explain argument and its types.
How can I set an array's size at run time?
main() {int i=5; // line 1 i=(++i)/(i++); // line 2 printf("%d",i); // line 3 } output is 2 but if we replace line 2 and line 3 by printf("%d",i=(++i)/(i++)); then output is 1. Why?