Vraag : Eenvoudig Koord aan formaat UTC

Hallo, heeft

I een koord HHMM. Ik moet het in volledig UTC datumformaat in C++.

Example omzetten:
Lets zegt de datum van vandaag is, 13 heeft Juli, 2010
I een koord met waarde: 1438 (2: 38pm/>I behoefte EST)

How kunnen ik dit doen? Ik ben niet vertrouwd met Verhoging, maar ik kan Verhoging gebruiken libs. de hulp
Any is appreciated.

Thanks,

Antwoord : Eenvoudig Koord aan formaat UTC

Oops. Vergat een stuk. Maak dat:
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
#include  

norm:: koord myTime = ā€ž1438ā€œ;

time_t nu = tijd (0);
struct tm* now_tm = localtime (&now);

now_tm->tm_hour = atoi (myTime.substr (0, 2) .c_str ());
now_tm->tm_min = atoi (myTime.substr (2, 2) .c_str ());
now_tm->tm_sec = 0;

time_t doel = mktime (now_tm);

klusjes timestamp [32] = "";
strftime (timestamp, 32, ā€ž%b %d %Y %I: %M: %S 000% pā€œ, gmtime (&target));

norm:: cout  <>
           
Andere oplossingen  
 
programming4us programming4us