Declaring Variables
A variable consists of a dual nature. It has a data type and a name.
Every variable must be given a name and a data type before it can be used. This is called declaring a variable. The syntax for declaring a variable is:
or
Note that a comma follows each identifier in the list except the last identifier, which is followed by a semicolon. By convention, the identifiers for variable names start…
View On WordPress










