Gå til innhold

Anbefalte innlegg

Videoannonse
Annonse

Standard C library har en fin funksjon som heter strftime:

 

#include <iostream>
#include <ctime>

using std::cout;
using std::endl;

int main()
{
   char   tstr[8];
   time_t curtime;
   tm*    curtime_tm;

   time(&curtime);
   curtime_tm = localtime(&curtime);

   strftime(tstr, sizeof(tstr), "%d/%m", curtime_tm);

   cout << tstr << endl;
}

Lenke til kommentar

Opprett en konto eller logg inn for å kommentere

Du må være et medlem for å kunne skrive en kommentar

Opprett konto

Det er enkelt å melde seg inn for å starte en ny konto!

Start en konto

Logg inn

Har du allerede en konto? Logg inn her.

Logg inn nå
×
×
  • Opprett ny...