标签:div clu 时间 local pause alt oca int code
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"); }
标签:div clu 时间 local pause alt oca int code
原文地址:http://www.cnblogs.com/stephjusky/p/6880680.html