Need a little bit of help with syntax here. I\'m trying to re-initialize multiple variables after the type has already been defined. So for example
int bonus, sa
int bonus = 25; int x = 38; // or any other value you prefer int sales = 38;
later you can access the variables
bonus = 35; // and so on...