Hey,
I was wondering what the difference is between using a
constant or just a plain variable. I know it's a newb question
but I need to know early on.
vs.
I was wondering what the difference is between using a
constant or just a plain variable. I know it's a newb question
but I need to know early on.
C++:
const int ALIEN_POINTS = 150;
C++:
int alien_points = 150;