blob: ccb5a615d85eafbea73aca40f71f1100d3de8dc4 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#include <stdio.h>
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!");
}
|