View previous topic :: View next topic |
Author |
Message |
abracadabra Beginner
Joined: 02 Sep 2003 Posts: 101 Topics: 55 Location: India
|
Posted: Wed Jan 07, 2004 6:35 am Post subject: Decimal Point |
|
|
What is the difference between using PIC 99V99 and PIC 99.99 when reading from a file? _________________ Cheers! |
|
Back to top |
|
 |
Mike Chantrey Intermediate
Joined: 10 Sep 2003 Posts: 234 Topics: 1 Location: Wansford
|
Posted: Wed Jan 07, 2004 7:02 am Post subject: |
|
|
PIC 99.99:
The data on your file should contain a decimal point, i.e. 44.44 should appear on the file as "44.44".
PIC 99V99:
The data on your file should not contain a decimal point, i.e. 44.44 should appear on the file as "4444".
This is because "V" represents a virtual or implied decimal point, not an actual character. |
|
Back to top |
|
 |
abracadabra Beginner
Joined: 02 Sep 2003 Posts: 101 Topics: 55 Location: India
|
Posted: Thu Jan 15, 2004 7:25 am Post subject: |
|
|
Thanks Mike _________________ Cheers! |
|
Back to top |
|
 |
|
|