時間処理

時間処理

C言語 現在時間を得る time localtime_s

現在時間を取得して表示するプログラムです。#include <stdio.h>#include <time.h>int main(void){ time_t tmGenzai = time(NULL); struct tm pGenzai;...