005
03.09.2003, 11:04 Uhr
typecast
aka loddab (Operator)
|
Also hier mal ein kleines Beispielprogamm. Die Optionen für fopen/fclose kannst du ja in der Hilfe nachschauen (Wenn du Linux/Unix hast dann probier mal "man fopen, man fclose)
C++: |
#include <stdio.h>
int main(int argc, char* argv[]) { char hello[14] = "Hello, World!"; char lesen[14];
FILE* file = fopen("hello.txt", "w+"); // öffnet hello.txt zum lesen und schreiben erzeugt hello.txt gegfalls fprintf(file, "Hello, world!"); fclose(file);
file = fopen("hello.txt", "r"); // öffnet Datei zum lesen fscanf(file, "%s", lesen); // liest bis zum ersten Leerzeichen, also "Hello," fprintf(stdout, "%s\n", lesen); close(file);
exit(0); }
|
-- All parts should go together without forcing. ... By all means, do not use a hammer. (IBM maintenance manual, 1925) |