R
Robert Blackwell
If you define a variable when you declare it, does that mean that you can
never change the variable?
int myVar = 5;
Where as maybe
int myVar;
myVar = 5;
and later on somewhere I could then say
myVar =6;
?
Does that make sense.
never change the variable?
int myVar = 5;
Where as maybe
int myVar;
myVar = 5;
and later on somewhere I could then say
myVar =6;
?
Does that make sense.