C語言中的_strtime函式
函式簡介:函式名: _strtime
頭檔案: time.h
函式原型: char * _strtime(char *)
功能: 獲取當前系統時間(不包括日期),函式以字元指針形式為返回.
#include<time.h>
#include<string.h>
#include<stdio.h>
#include <conio.h>
void main()
{
char Now_time[30];
char *t;
t=Now_time;
strcpy(Now_time,_strtime(t));
printf("%s",Now_time);
getch();
/*此形式一般用於理解*/
}
運行結果將列印出當前時間
一般實用性的使用方法:
#include<time.h>
#include<stdio.h>
#include <conio.h>
void main()
{
char Now_time[30];
printf("%s",_strtime(Now_time));
getch();
}
運行結果將列印出當前時間