{ printf("Something is wrong");} 39. 40. struct tm *p; 41. struct tm buf; 42. char timestring[100]; 43. time_t ltime = time(NULL); 44. if (NULL != (p=localtime_r(<ime, &buf))){ 45. strftime(timestring, sizeof(timestring),"** %c: ", p); 46. char* result ...