#include int main(){ FILE* tofile; tofile = fopen("../test.txt","w"); fprintf(tofile,"This is some text"); fclose(tofile); printf("%s%c%c\n","Content-Type:text/html;charset=iso-8859-1",13,10); printf("Completed without error!"); }