I came across this example of an assertion and was wondering what the #
is for:
#define ASSERT( x ) if ( !( x ) ) {
int *p = NULL;
DBGPRINTF("Assert failed: [%s]
Halting.", #x);
*p=1;
}
See Question&Answers more detail:os