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
|
StructA struct is a collection of variables, somewhat like a simplified class. It cannot have methods, but
SubstringA string is the smallest type of variable that holds non-numeric data. Word, phrases, lines of a fil
SwitchSwitch/case statements control the flow of programs by checking a list of
SyntaxGrammar defining a programming language
TaxonomyA taxonomy (or concept taxonomy) is a set of interdependent concepts arranged in a lattice based on
TypeType refers to what datatype a variable represents. For instance, int, string, or char are all datat
UnsignedDeclaring a variable as unsigned means that it will store values only between 0 and their maximum va
VariableHolds values, e.g., integers (int), strings (string) and reals (float, double). Two warnings
Variable AssignmentVariable assignment is the assignment of a value to a variable. For instance
Variable DeclarationVariable declaration is where a variable is first given a type and a variable name. For instance
VectorA vector is an object in c++ that behaves somewhat like an array in that it contains multiple elemen
VoltageThis is the rate at which energy is drawn from a source that produces a flow of electricity in a cir
WhileThe while loop constructs a loop that executes until the statement in the condition of the loop is t