#include int main(void) { FILE *f; f = fopen("Pfad", "w+"); fprintf(f, "Hallo\n"); fclose(f); return 0; }