nightvision04:
I've read the variable assignment documentation and it doesn't mention anything about assignment chaining.
Is it possible to write:
like the following?
double a=1,b=2;not possible i believe
This would work:
int a,b,c; a=b=c=0;
Sardion Maranatha:
not possible i believe
not possible i believe
double a=1,b=2;
This worked. Thanks!

You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
I've read the variable assignment documentation and it doesn't mention anything about assignment chaining.
Is it possible to write:
like the following?