//
// Torbert, 15 Sept 2011
//
#include <stdio.h>
//
int main(void)
{
	FILE* fout;
	//
	fout=fopen("fname.txt","w");
	fprintf(fout,"Hello world.\n");
	fclose(fout);
	//
	return 0;
}
//
// end of file
//

