Questions about this topic? Sign up to ask in the talk tab.

Difference between revisions of "Variable"

From NetSec
Jump to: navigation, search
(Created page with "Something that contains data, for example, if you declare a variable "int x = 1", the variable <b>x</b> will contain the <b>int</b>eger value of <b>1</b>.")
 
Line 1: Line 1:
 +
{{cleanup}}
 
Something that contains data, for example, if you declare a variable "int x = 1", the variable <b>x</b> will contain the <b>int</b>eger value of <b>1</b>.
 
Something that contains data, for example, if you declare a variable "int x = 1", the variable <b>x</b> will contain the <b>int</b>eger value of <b>1</b>.

Revision as of 04:43, 19 October 2011

Something that contains data, for example, if you declare a variable "int x = 1", the variable x will contain the integer value of 1.