i = 1, 2, 3, 4, 5;
this actually assigns 1 to i.
I wonder if this type of assignment is actually useful somewhere?
Do you know some application of this syntax?
|
|
this actually assigns I wonder if this type of assignment is actually useful somewhere? Do you know some application of this syntax?
|
||||||
|
|
|
It's not a "type of assignment". The comma operator binds very loosely, looser than assignment. So you've written the equivalent of:
Integer literals in void contexts are useless (except maybe for avoiding warnings in macros that do nothing in certain cases, like assert), so no, there's no use for exactly this syntax - the need for an expression which sets i to 1 and evaluates to 5 is pretty limited, and even if you found a case for that, the 2,3,4 are redundant. More useful could be |
|||
|
|
|
This is useful when you want to create a macro that does several things and returns a value like a function:
|
||
|
|
|
|
As the others already pointed out: This statement assigns 1 to i, then evaluates 2, then 3, then 4 and then 5. The overall value of the statement is then 5 (the last evaluated expression). |
||
|
|
|
|
Another common use for the comma operator is in
|
||||||
|
|
|
In an assignment, I can't think of where this particular example would be useful. You can, however, do
And they'll be treated as a single statement, and evaluated from left-to-right (according to C89). |
||
|
|
|
|
This is the comma operator, which allows you to combine multiple expressions into one. The compiler parses it as Except in |
||
|
|
|
|
It's the comma operator, C's lowest precedence operator. According to C's precedence rules, that line parses as this:
This could be "useful" if you wanted to do something else on that line:
Could save you from using brackets for an |
||||||
|
|
|
Application: the Obfuscated C Contest! |
||
|
|
|
|
This syntax is really useful when you want to have say 2 iteration variables in a for loop
|
||||||||
|