我得到这样的系统时间:
time_t t = time(0);
struct tm* now = localtime(&t);
TCHAR* tInfo = new TCHAR[256];
swprintf_s(tInfo
, 256
, _T("Current time: %i:%i:%i")
, now->tm_hour
, now->tm_min
, now->tm_sec);
然后在屏幕上显示:
std::cout << tInfo << std::endl;
但是插入当前时间:12 :57:56我得到了:屏幕上的0x001967a8。我做错了什么?