#include <stdio.h> int main (void) { FILE *f = fopen ("fhello.txt", "w"); fprintf (f, "Hello, world!\n"); fclose (f); return 0; }