#include <stdio.h>
int main0803(){
FILE *f;
// Apend
f=fopen("G:\\Godoro\\Product\\Examples\\C-Cpp\\CFundementals\\Out.txt","w");
if(f==NULL){
printf("Dosya a��lamad�.\n");
}
fputc('G',f);
fputc('o',f);
fputc('d',f);
fputc('o',f);
fputc('r',f);
fputc('o',f);
fclose(f);
printf("Bitti.");
return 0;
}
Dosyayı İndir