000
10.07.2008, 12:44 Uhr
~maslensa
Gast
|
hallo
ich habe so eine Code . ICh mochte datum und zeit in eine .txt Datei schreiben. Aber wenn ich das ausführe bekomme ich Fehler. Wo mache ich Fehler ? .
danke für die hilfe.
C++: |
#include <iostream> #include <string> #include <time.h> using namespace std;
string formatTime(const char *format, time_t rawtime=NULL) {
struct tm *timeinfo; char buffer[80];
if(!rawtime) time(&rawtime); timeinfo = localtime(&rawtime);
strftime(buffer, 80, format, timeinfo);
return buffer; }
int main() { char stringDate[200];
cout << formatTime("%a, %Y/ %B/ %d %H:%M:%S %Z") << endl; stringDate = formatTime("%a, %d/ %B/ %Y %H:%M:%S %Z");
FILE *fp; fp=fopen("/home/overcomes/myDate.txt","w"); fprintf(fp,"%s",stringDate); //fp.close();
//return 0; system("PAUSE"); }
|
Dieser Post wurde am 10.07.2008 um 18:10 Uhr von FloSoft editiert. |