Language Logic

esse quam videri
Revision as of 00:54, 8 September 2009 by Tyler.kendrick (talk | contribs)
Jump to: navigation, search

Programming Club

Objects

Variables

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

Examples
C<C>const char* name = "value";</C>
C++<C>const char* name = "value";</C>
C++0x<C>const char* name = "value";</C>
C#<CSharp>const string name = "value";</CSharp>