0
私は次のコードを持っている:
int main()
{
time_t rawtime;
time (&rawtime);
printf ("The current local time is: %s", ctime (&rawtime));
std::string datetoString(ctime (&rawtime));
return 0;
}
std::string datetoString (char dat[])
//how to add ctime(&rawtime) in char dat[]?
{
std::string rez;
struct tm;
strptime(dat, "%d %b %Y %H:%M:%S", &tm);
// what library do i have to inclide for strptime?
rez=tm.tm_mday + "-" + tm.tm_mon +"-"+ tm.tm_year+ hour+min+sec;
//how to print the hour,minutes and secods?
return rez;
}
を私は私の質問にコメントした場所でエラーを持っています。
このコードはありますか? – Pih
dat []にエラーがあります – marryy
これは宿題です – Blazes