#ifdef _DEBUG #include "conio.h" #endif
#ifdef _DEBUG AllocConsole(); _cprintf("Debuging....\r\n"); #endif
_cwprintf(L"Debuging....\r\n");
int i = -16, h = 29; unsigned u = 62511; char c = 'A'; char s[] = "Test";
_cprintf( "%d %.4x %u %c %s\r\n", i, h, u, c, s );
#ifdef _DEBUG FreeConsole(); #endif
|