在ctime头文件中定义了asctime()函数。 asctime()函数将结构tm的给定日历时间转换为字符表示形式,即人类可读形式。
句法:
char* asctime(const struct tm * time_ptr);
参数:该函数接受单个参数time_ptr,即指向要转换的tm对象的指针。
返回值:该函数以“ Www Mmm dd hh:mm:ss yyyy”的形式返回压延时间。
下面的程序说明了C++中的asctime()函数:
例子:-
// c++ program to demonstrate
// example of asctime() function.
#include
using namespace std;
int main()
{
time_t time_ptr;
time(&time_ptr);
cout << "Current date and time = "
<< asctime(localtime(&time_ptr));
return 0;
}
输出:
Current date and time = Mon Oct 1 10:21:26 2018
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。