Question #2207
What will be the output of the following VBA code?<br>Sub test()<br>Dim l as integer<br>Dim S as string<br>S = 'Time is money'<br>l = len(s)<br>Debug.print 'The length is' & l<br>End sub
Explanation
No explanation provided.