pivalexander / Publications
Forum
Declaring variables behind the loop or inside the loop?
string st = "" ; for ( int i = 0 ; i < 1000 ; i++) { st = i; ... } or for ( int i = 0 ; i < 1000 ; i++) { string st = i; ... } Is there a difference? given all the optimisations of the mql5 compiler