The following is a simple program
C = 20 / 3
PRINT C
C$ = STR$(C)
Z = INSTR(1, STR$(C), ".")
PRINT Z
Z = INSTR(1, C$, ".")
PRINT Z
Z = LEN(C)
PRINT Z
Z = LEN(C$)
PRINT Z
Can someone tell me why the INSTR is not showing the correct position of the decimal point
and why is the length of the fields not correct ?
Mike