+ 2
Why is there " = " sign after age, instead of " ; " sign???
5 Respostas
+ 3
I suppose you mean with a variable?
Well, lets go with that.
The "=" sign sets a value. It sets the value on the right side of the sign to the variable on the left side.
int age = 26; // Sets the variable "age" to 26
int age; // This just declares the variable. It has no value yet.
0
wat.
a like this? int age = 40;
0
madar chod
0
int age;. //no value
int age = 1 978 637; // value is 1 978 637
0
yes