我正在尝试获取时间戳以显示系统提供的日期和时间。我收到'时间'错误,'asctime'和'localtime' - 找不到标识符。我认为这应该是一个简单的解决方案,但我是一个新手程序员,并且超出了卡住。谢谢!
#include <iostream>
using namespace std;
int main()
{
cout << "Content-type: text/html\n\n";
cout << "<center><h1>TEST</h1>\n";
return 0;
time_t tTime = time(NULL);
printf("Today is : %s\n", asctime(localtime(&tTime)));
}
答案 0 :(得分:2)
您是否忘了添加#include <time.h>
?