日時

現在ロケールにあわせた形式で表示

Win32 APIを使用する方法


	TCHAR	buff[256] = {0};
	SYSTEMTIME	sysTime;
    
	GetSystemTime(&sysTime);
	GetDateFormat(LOCALE_USER_DEFAULT, LOCALE_NOUSEROVERRIDE, &sysTime, NULL, buff, 256);
    

標準ライブラリを使用する方法


	TCHAR	buff[256] = {0};
	time_t	curTime;
    
	time(&curTime);
	_tcsftime(buff, 255, _T("%#c"), localtime(&curTime));