[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
The statement 'a = 1, 2, 3;' will set 'a' to contain '1'. |
'a = b = 4;' will set a and b to be 4. It can also be written 'a = (b = 4)' to illustrate the order of execution. |