Click here to Skip to main content
15,886,724 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
C#
main(){
     int i,j,k;
     k = (i = 4, j = 5);
     printf("k = %d", k);
     return 0;
}


which gets the prcedence and how ?
Posted

output is k = 5 because:
  1. Compiler told me.
  2. This is how comma operator works, namely: "[comma] is a binary operator that evaluates its first operand and discards the result, and then evaluates the second operand and returns this value (and type)" (see Comma operator at Wikipedia[^]).
  3. Hence evaluation steps are:
    1. i = 4 (discarded)
    2. j = 5 (returned)
    3. k = 5 (k gets the returned value of the comma operator)
 
Share this answer
 
Go to this link and you will know the order-of-precedence-in-c-programming-language[^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900