Suppose I have a function void foo(int x, int y, int z);
and I write the next line
foo(x,++x,--x);.
Is the line equivelent to
foo(x,x,x);
or to
foo(x,x+1,x-1);
?
Thanks in advance.
This post has been edited by Sepanto: 13 August 2008 - 08:59 AM




Posted 13 August 2008 - 08:58 AM
foo(x,++x,--x);.
foo(x,x,x);
foo(x,x+1,x-1);
This post has been edited by Sepanto: 13 August 2008 - 08:59 AM
Posted 13 August 2008 - 09:12 AM
|
|
Query failed: connection to localhost:3312 failed (errno=111, msg=Connection refused).
|
