Hi,
If I have the following code:
I am guessing that the noFloatsOrDoubles * floatsNoBytes is resolved at compile time so that the expression for the packetPtr becomes:
And this expression is executed at run time?
Is this correct?
Regards
Rob
If I have the following code:
Constant Values:
Dim const floatsNoBytes = 4 As Int
Dim const noFloatsOrDoubles = 5 As Int
packetPtr = packetPtr + noFloatsOrDoubles * floatsNoBytes
I am guessing that the noFloatsOrDoubles * floatsNoBytes is resolved at compile time so that the expression for the packetPtr becomes:
New Expression:
packetPtr = packetPtr + CALCULATED_CONSTANT
And this expression is executed at run time?
Is this correct?
Regards
Rob