Copy of `Superglossary - Programming`

The wordlist doesn't exist anymore, or, the website doesn't exist anymore. On this page you can find a copy of the original information. The information may have been taken offline because it is outdated.


Superglossary - Programming
Category: Technical and IT > Coding
Date & country: 09/12/2013, USA
Words: 113


Struct
A struct is a collection of variables, somewhat like a simplified class. It cannot have methods, but

Substring
A string is the smallest type of variable that holds non-numeric data. Word, phrases, lines of a fil

Switch
Switch/case statements control the flow of programs by checking a list of

Syntax
Grammar defining a programming language

Taxonomy
A taxonomy (or concept taxonomy) is a set of interdependent concepts arranged in a lattice based on

Type
Type refers to what datatype a variable represents. For instance, int, string, or char are all datat

Unsigned
Declaring a variable as unsigned means that it will store values only between 0 and their maximum va

Variable
Holds values, e.g., integers (int), strings (string) and reals (float, double). Two warnings

Variable Assignment
Variable assignment is the assignment of a value to a variable. For instance

Variable Declaration
Variable declaration is where a variable is first given a type and a variable name. For instance

Vector
A vector is an object in c++ that behaves somewhat like an array in that it contains multiple elemen

Voltage
This is the rate at which energy is drawn from a source that produces a flow of electricity in a cir

While
The while loop constructs a loop that executes until the statement in the condition of the loop is t