0% found this document useful (0 votes)
734 views1 page

FreeBASIC Types

This document describes the standard data types in FreeBASIC, including integer, floating point, and string types. It lists the value range and size of each type such as BYTE, SHORT, INTEGER, SINGLE, DOUBLE, STRING, and more. It also provides examples of how to define variables of each type using the DIM statement.

Uploaded by

Paolo_R
Copyright
© Attribution Non-Commercial (BY-NC)
Available Formats
Download as PDF, TXT or read online on Scribd
Download as pdf or txt
0% found this document useful (0 votes)
734 views1 page

FreeBASIC Types

This document describes the standard data types in FreeBASIC, including integer, floating point, and string types. It lists the value range and size of each type such as BYTE, SHORT, INTEGER, SINGLE, DOUBLE, STRING, and more. It also provides examples of how to define variables of each type using the DIM statement.

Uploaded by

Paolo_R
Copyright
© Attribution Non-Commercial (BY-NC)
Available Formats
Download as PDF, TXT or read online on Scribd
Download as pdf or txt
Download as pdf or txt
You are on page 1/ 1

FreeBASIC standard data types

Data type

Integers

Floating
points
Strings

Value range

Size

BYTE

-128

127

8 bits

UBYTE

255

8 bits

SHORT

-32'768

32'767

16 bits

USHORT

65365

16 bits

INTEGER [%]

-2'147'483'648

2'147'483'647

32 bits

UINTEGER

4'294'967'295

32 bits

LONG [&] (same as INTEGER)

-2'147'483'648

2'147'483'647

32 bits

LONGINT

-9'223'372'036'854'775'808

9'223'372'036'854'775'807

64 bits

ULONGINT

18'446'744'073'709'551'615

64 bits

SINGLE [!]

1.1E-38

3.43E+38 (6 digits after comma)

32 bits

DOUBLE [#]

2.2E-308

1.7E+308 (15 digits after comma)

64 bits

STRING [$]

0 Bytes

2 Gigabytes

8 bits/char

ZSTRING (null terminated string)

0 Bytes

2 Gigabytes

8 bits/char

WSTRING (wide-chars string))

0 Bytes

2 Gigabytes

16 bits/char

Defining variables:

Examples:

DIM var [xx TO yy] AS type

DIM Counter AS SHORT


DIM MyArray (1 TO 300) AS STRING

Written by Mateusz Viste Fox

http://www.the.killer.webpark.pl

You might also like