Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- QuickBASIC 3.0 - <b> basic data types</b> http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
                            BASIC Data Types

                   Declaration
  Type             Character *       Range       Accuracy       Storage
  Integer               %      -32768 to 32767   Perfect        2 bytes
  Single precision      !      10E-38 to 10E38   6 digits       4 bytes
  Double precision      #      10D-38 to 10D38   16 digits      8 bytes
  String                $                                       See below

  *  Variables may also be typed by means of BASIC's DEFtype statements:
     DEFINT, DEFSNG, DEFDBL, and DEFSTR. Variables that are not explicitly
     typed are treated as single precision.

     String storage: 4 bytes for descriptor, 1 byte for string back
                     pointer, and 1 byte for each character in
                     the string.

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson