時間値を文字列に変換し、現地時間帯の設定に合わせる
char *ctime( const time_t *timer );
サンプルです。
#include <stdio.h>
#include <time.h>
#include <string.h>
int main()
{
time_t tTime;
/*
ctimeの戻り値は改行文字 ('\n') と NULL 文字 ('\0') が入り、
必ず 26 文字となる
*/
char buf[26];
time( &tTime );
strcpy(buf, ctime( &tTime ));
printf( "時刻: %s\n", buf );
return 0;
}