show/hide this revision's text 4 Rollback to Revision 2

Multi-character constants:

int x = 'ABCD';

This sets x to 0x41424344.

EDIT: This technique is not portable, especially if you serialize the int. However, it can be extremely useful to create self-documenting enums. e.g.

enum state {
    stopped = 'STOP',
    running = 'RUN!',
    waiting = 'WAIT'
WAIT',
};

This makes it much simpler if you're looking at a raw memory dump and need to determine the value of an enum without having to look it up.

show/hide this revision's text 3 Removed bad comma

Multi-character constants:

int x = 'ABCD';

This sets x to 0x41424344.

EDIT: This technique is not portable, especially if you serialize the int. However, it can be extremely useful to create self-documenting enums. e.g.

enum state {
    stopped = 'STOP',
    running = 'RUN!',
    waiting = 'WAIT',
WAIT'
};

This makes it much simpler if you're looking at a raw memory dump and need to determine the value of an enum without having to look it up.

    Post Made Community Wiki by Community
show/hide this revision's text 2 added 428 characters in body
show/hide this revision's text 1