How to get current time and date in C++?

后端 未结 24 1487
刺人心
刺人心 2020-11-22 06:55

Is there a cross-platform way to get the current date and time in C++?

24条回答
  •  旧巷少年郎
    2020-11-22 07:23

    #include 
    #include 
    
    int main ()
    {
      time_t rawtime;
      struct tm * timeinfo;
    
      time ( &rawtime );
      timeinfo = localtime ( &rawtime );
      printf ( "Current local time and date: %s", asctime (timeinfo) );
    
      return 0;
    } 
    

提交回复
热议问题