char *p_time = (char *)&time;
char str_time[4] = {0};
for(int i= 0 ;i < 4 ;i++)
{
str_time[i] = *p_time;
p_time ++;
}