Variable declarations and Pass by value

Variables are declared using this structure. [access keywords] [special keywords] Type varname;, and they are initialized using this structure varname = initial value;. It is common to see the declaration and initialization on the same line, thus giving us this structure [access keywords][special keywords] Type varname = initial value;