Language Logic

esse quam videri
Revision as of 08:09, 21 August 2009 by Tyler.kendrick (talk | contribs) (Created page with '==Variables== Variables are objects that are given names, values and sometimes object types. <table><th>Examples</th> <tr><td>C</td><td>char[]* name = value;</td></tr> <tr><td>C+…')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Variables

Variables are objects that are given names, values and sometimes object types.

Examples
Cchar[]* name = value;
C++string name = value;
C++0xstring name = value;
C#string name = value;