Nope just printing
blogzr3 wrote >>
Can't see anything relevant when doing a search, but in case anyone knows the answer to this question:
Any quick way of zooming in on the "zero divide" line of code, apart from putting a whole bunch of Print statements?
If you have a line of code like this...
c=a/b;
try using the if statement...it may do the trick...
if(b!=0)
c=a/b;

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
Can't see anything relevant when doing a search, but in case anyone knows the answer to this question:
Any quick way of zooming in on the "zero divide" line of code, apart from putting a whole bunch of Print statements?