调用系统时间
Posted StephenJusky
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了调用系统时间相关的知识,希望对你有一定的参考价值。
VS中编译通过:
#include<stdio.h> #include<stdlib.h> #include<time.h> int main() { printf("This is a test!\n"); time_t rawtime; rawtime = time(NULL); struct tm *systime = localtime(&rawtime); printf("Time is: %s", asctime(systime)); system("pause"); }
以上是关于调用系统时间的主要内容,如果未能解决你的问题,请参考以下文章
调用模板化成员函数:帮助我理解另一个 *** 帖子中的代码片段