“c Dowień się” Kod odpowiedzi

c Dowień się

/* localtime example */
#include <stdio.h>
#include <time.h>

int main ()
{
  time_t rawtime;
  struct tm * timeinfo;

  time ( &rawtime );
  timeinfo = localtime ( &rawtime );
  printf ( "Current local time and date: %s", asctime (timeinfo) );
  
  return 0;
}
JulesG10

Jak uzyskać godzinę i datę w C

#include <stdio.h>
#include <time.h>

int main()
{
  time_t t = time(NULL);
  struct tm tm = *localtime(&t);
  printf("now: %d-%02d-%02d %02d:%02d:%02d\n", tm.tm_year + 1900, tm.tm_mon + 1, tm.tm_mday, tm.tm_hour, tm.tm_min, tm.tm_sec);
}
Inquisitive Iguana

funkcja, aby znaleźć czas systemu w C

time_t now = time(0); // Get the system time
Motionless Markhor

Odpowiedzi podobne do “c Dowień się”

Pytania podobne do “c Dowień się”

Więcej pokrewnych odpowiedzi na “c Dowień się” w C

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu