Herzlich Willkommen, lieber Gast!
  Sie befinden sich hier:

  Forum » C / C++ (ANSI-Standard) » fwrite() Problem

Forum | Hilfe | Team | Links | Impressum | > Suche < | Mitglieder | Registrieren | Einloggen
  Quicklinks: MSDN-Online || STL || clib Reference Grundlagen || Literatur || E-Books || Zubehör || > F.A.Q. < || Downloads   

Autor Thread - Seiten: > 1 <
000
03.04.2005, 08:20 Uhr
~Zonk
Gast


Hi,

Ich hab folgendes Problem. Ich möchte einen int Variable mit fwrite() in eine Datei schreiben. Wie mache ich das ? Ich kann nur Strings reinschreiben.

Danke für eure Beteiligung
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
001
03.04.2005, 08:37 Uhr
~Gast
Gast


Hy!


C++:
FILE * pFile;
pFile = fopen ("myfile.txt","wb");
if (pFile!=NULL)
{
   fwrite (&my_int , sizeof(int) , 1 , pFile);
   fclose (pFile);
}

 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
002
03.04.2005, 08:59 Uhr
~Zonk
Gast


Vielen Dank, funktioniert Prima !
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
Seiten: > 1 <     [ C / C++ (ANSI-Standard) ]  


ThWBoard 2.73 FloSoft-Edition
© by Paul Baecher & Felix Gonschorek (www.thwboard.de)

Anpassungen des Forums
© by Flo-Soft (www.flo-soft.de)

Sie sind Besucher: