
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
Full code example, if another user need for reference.
#define SWAP(a,b) {a=a+b;b=a-b;a=a-b;} #define SORT(a,b,c) {if(a > b) SWAP(a,b); if(a > c) SWAP(a,c); if (b>c) SWAP(b,c)} void OnStart() { int Num1 = rand(); int Num2 = rand(); int Num3 = rand(); SORT(Num1, Num2, Num3); }
Beatiful.
Full example (again):
Try to take out if's before the SWAP macro...