Lucifre
Full Member level 2
- Joined
- Jul 5, 2005
- Messages
- 125
- Helped
- 2
- Reputation
- 4
- Reaction score
- 0
- Trophy points
- 1,296
- Location
- Detroit MI
- Activity points
- 2,389
Often in my C++ book i see variables initialized as
or
my question is what do those letter characters do in there? do they change value or what do they do?
Code:
long lg = 0x654321;
or
Code:
long DELAY = 10000L;
my question is what do those letter characters do in there? do they change value or what do they do?