Home Articles FAQs XREF Games Software Instant Books BBS About FOLDOC RFCs Feedback Sitemap
irt.Org

DIM statement

You are here: irt.org | FOLDOC | DIM statement

<programming> (From "dimension") A keyword in most versions of the BASIC programming language that declares the size of an array. E.g.

	DIM A(100)

declares a one-dimensional array with 101 numeric elements (including A(0)).

Visual Basic uses the DIM (or "Dim") statement for any variable declaration, even scalars, e.g.

Dim DepartmentNumber As Integer

which declares a single (scalar) variable of type Integer.

(1999-03-26)

Nearby terms: DIM « DIMATE « DIMM « DIM statement » DIN » DIN-8 » ding

FOLDOC, Topics, A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T, U, V, W, X, Y, Z, ?, ALL

©2018 Martin Webb