+ 4
In Variables Topic, First It Tells Me I Can Assign int XYZ Multiple Values. Next it says Doing So Results In Syntax Error
Any Help ?
2 odpowiedzi
+ 8
You can do this:
int x=3;
x=5;
but you can't do this:
const int i=5;
++i;
+ 3
Ah Thanks For The Reply Guys.
@Filip, ++i Is Just An Example Right ? Like ++x Or Something ...
@Kenyatta Madison, Why Does "Double y" Produce An Error ? Doesn't It Become Another Variable When Gap Or Space Is Inserted ?